/**
Theme Name: Astra Child
Template: astra
Version: 1.0.0
*/

/* =================================================
   SUPREME LANDING – ESTILOS CON HEADER/FOOTER ASTRA
   ================================================= */

.page-template-page-supreme-landing {
    --primary-blue: #00d4ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --accent-glow: rgba(0, 212, 255, 0.3);

    background: var(--darker-bg) !important;
    color: var(--text-light) !important;
    font-family: 'Outfit', sans-serif !important;
}

/* NO ocultar header ni footer de Astra - los dejamos visibles */

/* =================================================
   FONDO ANIMADO
   ================================================= */

.page-template-page-supreme-landing .bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
    pointer-events: none;
}

.page-template-page-supreme-landing .bg-animated::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 255, 0.08) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-template-page-supreme-landing .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* =================================================
   CONTENEDOR
   ================================================= */

.page-template-page-supreme-landing .content {
    position: relative;
    z-index: 1;
}

/* =================================================
   HERO SECTION
   ================================================= */

.page-template-page-supreme-landing .hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
}

.page-template-page-supreme-landing .hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-template-page-supreme-landing .hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* =================================================
   SERVICIOS
   ================================================= */

.page-template-page-supreme-landing .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.page-template-page-supreme-landing .service-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.page-template-page-supreme-landing .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-template-page-supreme-landing .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.page-template-page-supreme-landing .service-card:hover::before {
    opacity: 1;
}

.page-template-page-supreme-landing .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.page-template-page-supreme-landing .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px var(--accent-glow);
}

.page-template-page-supreme-landing .service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.page-template-page-supreme-landing .service-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* =================================================
   BOTÓN CTA
   ================================================= */

.page-template-page-supreme-landing .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.page-template-page-supreme-landing .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.page-template-page-supreme-landing .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.page-template-page-supreme-landing .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    border-color: var(--text-light);
}

.page-template-page-supreme-landing .cta-button span {
    position: relative;
    z-index: 1;
}

/* =================================================
   SECCIÓN ABOUT
   ================================================= */

.page-template-page-supreme-landing .about-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-template-page-supreme-landing .about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.page-template-page-supreme-landing .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.page-template-page-supreme-landing .feature-item {
    padding: 2rem;
    background: rgba(10, 14, 26, 0.4);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-template-page-supreme-landing .feature-item:hover {
    background: rgba(10, 14, 26, 0.7);
    transform: translateX(10px);
}

.page-template-page-supreme-landing .feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.page-template-page-supreme-landing .feature-item p {
    color: var(--text-gray);
}

/* =================================================
   CONTACTO
   ================================================= */

.page-template-page-supreme-landing .contact-section {
    padding: 6rem 5%;
    background: rgba(0, 212, 255, 0.05);
    text-align: center;
}

.page-template-page-supreme-landing .contact-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.page-template-page-supreme-landing .contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

/* Estilos para Contact Form 7 */
.page-template-page-supreme-landing .wpcf7 input[type="text"],
.page-template-page-supreme-landing .wpcf7 input[type="email"],
.page-template-page-supreme-landing .wpcf7 input[type="tel"],
.page-template-page-supreme-landing .wpcf7 textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.page-template-page-supreme-landing .wpcf7 input::placeholder,
.page-template-page-supreme-landing .wpcf7 textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.page-template-page-supreme-landing .wpcf7 input:focus,
.page-template-page-supreme-landing .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px var(--accent-glow);
}

.page-template-page-supreme-landing .wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.page-template-page-supreme-landing .wpcf7 label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.page-template-page-supreme-landing .wpcf7 input[type="submit"],
.page-template-page-supreme-landing .wpcf7 .wpcf7-submit {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.page-template-page-supreme-landing .wpcf7 input[type="submit"]:hover,
.page-template-page-supreme-landing .wpcf7 .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    border-color: var(--text-light);
}

.page-template-page-supreme-landing .wpcf7-response-output {
    border: none;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-blue);
}

.page-template-page-supreme-landing .wpcf7 br {
    display: none;
}

.page-template-page-supreme-landing .wpcf7 p {
    margin-bottom: 0;
}

/* =================================================
   RESPONSIVE - MÓVIL
   ================================================= */

@media (max-width: 768px) {
    
    /* Hero con menos padding */
    .page-template-page-supreme-landing .hero {
        padding: 2rem 5%;
    }
    
    /* Servicios en columna */
    .page-template-page-supreme-landing .services {
        grid-template-columns: 1fr;
    }
}

/* =================================================
   SCROLL SUAVE
   ================================================= */

html {
    scroll-behavior: smooth;
}

/* =================================================
   PERSONALIZAR HEADER Y FOOTER DE ASTRA (OPCIONAL)
   ================================================= */

/* Si quieres que el header de Astra tenga los colores oscuros: */
.page-template-page-supreme-landing .site-header {
    background: rgba(10, 14, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

/* Enlaces del menú de Astra en azul cian */
.page-template-page-supreme-landing .main-header-menu a {
    color: #a0aec0 !important;
}

.page-template-page-supreme-landing .main-header-menu a:hover {
    color: #00d4ff !important;
}

/* Footer oscuro */
.page-template-page-supreme-landing .site-footer {
    background: #050810 !important;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.page-template-page-supreme-landing .site-footer,
.page-template-page-supreme-landing .site-footer p,
.page-template-page-supreme-landing .site-footer a {
    color: #a0aec0 !important;
}

/* Asegurar que el menú móvil de Astra esté por encima de todo */
.ast-mobile-popup-drawer {
    z-index: 999999 !important;
}

.ast-mobile-popup-overlay {
    z-index: 999998 !important;
}
/* =================================================
   PERSONALIZAR MENÚ MÓVIL DE ASTRA - VERSION FUERTE
   ================================================= */

/* Fondo del drawer completo */
.page-template-page-supreme-landing .ast-mobile-popup-drawer,
.ast-mobile-popup-drawer.active,
.ast-mobile-popup-inner {
    background-color: #050810 !important;
    background: #050810 !important;
}

/* Contenedor del menú */
.page-template-page-supreme-landing .ast-mobile-popup-content,
.ast-mobile-popup-drawer .ast-mobile-popup-content {
    background: #050810 !important;
}

/* Enlaces normales */
.page-template-page-supreme-landing .ast-mobile-popup-drawer .main-navigation a,
.page-template-page-supreme-landing .ast-mobile-popup-drawer .main-header-menu a,
.ast-mobile-popup-drawer .main-navigation a,
.ast-mobile-popup-drawer .main-header-menu a,
.ast-mobile-popup-drawer .menu-item a {
    color: #a0aec0 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1) !important;
    padding: 1.2rem 1.5rem !important;
    font-weight: 500 !important;
}

/* Hover en enlaces */
.page-template-page-supreme-landing .ast-mobile-popup-drawer .main-navigation a:hover,
.page-template-page-supreme-landing .ast-mobile-popup-drawer .main-header-menu a:hover,
.ast-mobile-popup-drawer .main-navigation a:hover,
.ast-mobile-popup-drawer .main-header-menu a:hover,
.ast-mobile-popup-drawer .menu-item a:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.05) !important;
}

/* Elemento activo/actual */
.ast-mobile-popup-drawer .menu-item.current-menu-item > a,
.ast-mobile-popup-drawer .menu-item.current_page_item > a {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1) !important;
}

/* Botón cerrar (X) */
.ast-mobile-popup-drawer .ast-mobile-popup-close,
.ast-mobile-popup-close {
    color: #00d4ff !important;
    border-color: #00d4ff !important;
}

.ast-mobile-popup-drawer .ast-mobile-popup-close:hover {
    background: rgba(0, 212, 255, 0.1) !important;
}

/* Overlay (fondo gris cuando se abre) */
.page-template-page-supreme-landing .ast-mobile-popup-overlay,
.ast-mobile-popup-overlay {
    background-color: rgba(5, 8, 16, 0.95) !important;
    backdrop-filter: blur(5px);
}

/* Botón hamburguesa - tres líneas */
.page-template-page-supreme-landing .menu-toggle,
.ast-mobile-menu-buttons .menu-toggle,
.ast-button-wrap .menu-toggle {
    color: #00d4ff !important;
    border-color: transparent !important;
}

/* Las barras del icono hamburguesa */
.menu-toggle .mobile-menu,
.menu-toggle .mobile-menu span,
.ast-mobile-menu-buttons .menu-toggle .mobile-menu,
.ast-mobile-menu-buttons .menu-toggle .mobile-menu span {
    background-color: #00d4ff !important;
    background: #00d4ff !important;
}

/* Cuando está abierto (ícono X) */
.menu-toggle.toggled .mobile-menu span {
    background: #00d4ff !important;
}

/* Header wrapper del móvil */
.ast-mobile-popup-drawer .ast-mobile-header-wrap {
    background: #050810 !important;
}

/* Resetear cualquier padding/margin extraño */
.ast-mobile-popup-drawer ul.main-header-menu {
    background: transparent !important;
}

.ast-mobile-popup-drawer .main-header-menu .menu-item {
    background: transparent !important;
}
/* PÁGINA DE CONTACTO */
.page-template-contacto .hero {
    padding-top: 140px;
}

.page-template-contacto .content {
    position: relative;
    z-index: 1;
}
/* ================================================
   CSS COMPLETO PARA SUPREME - HOME Y CONTACTO
   Añade esto a tu style.css
   ================================================ */

/* Variables CSS */
:root {
    --primary-blue: #00d4ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --accent-glow: rgba(0, 212, 255, 0.3);
}

/* Fondo animado */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.bg-animated::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 255, 0.08) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Contenido */
.content {
    position: relative;
    z-index: 1;
}

/* Hero section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 4rem 5%;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero > p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 3rem;
}

/* Services cards */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* CTA Button */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button span {
    position: relative;
    z-index: 1;
}
/* ================================================
   CSS ADICIONAL PARA PÁGINA DE SERVICIOS
   Añade esto AL FINAL de tu style.css
   ================================================ */

/* Padding del hero para servicios */
.page-template-page-servicios .hero {
    padding-top: 140px;
}

/* Sección de servicios con padding */
.page-template-page-servicios .services-section {
    padding: 2rem 5% 4rem 5%;
}

/* Link "Más información" */
.learn-more {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Scroll suave para los enlaces ancla */
html {
    scroll-behavior: smooth;
}
/* About section */
.about-section {
    padding: 6rem 5%;
    background: rgba(0, 212, 255, 0.05);
}

.about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(10, 14, 26, 0.4);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(10, 14, 26, 0.7);
    transform: translateX(10px);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact section */
.contact-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Contact Form 7 Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px var(--accent-glow);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066ff 100%);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Padding específico para cada plantilla */
.page-template-page-supreme-landing .hero {
    padding-top: 140px;
}

.page-template-contacto .hero {
    padding-top: 140px;
}

.page-template-page-supreme-landing .content,
.page-template-contacto .content {
    position: relative;
    z-index: 1;
}
/* PADDING PARA HEADER */
.page-template-page-supreme-landing .hero,
.page-template-contacto .hero {
    padding-top: 140px;
}

/* FORZAR CENTRADO EN CONTACTO */
.page-template-contacto .hero,
.page-template-contacto .about-section,
.page-template-contacto .contact-section {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.page-template-contacto .content {
    width: 100%;
    max-width: 100%;
}

.page-template-contacto .services {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.content{
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
    padding-left:5%;
    padding-right:5%;
}
/* CENTRAR CONTENIDO CONTACTO */
.page-template-page-contacto .ast-container{
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-template-page-contacto .content{
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.page-template-page-contacto .hero{
    max-width:1400px;
    margin:auto;
}
/* Ajuste final centrado contacto */
.page-template-page-contacto .hero{
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
    padding-left:5%;
    padding-right:5%;
}

.page-template-page-contacto .services{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}
