:root {
    /* Paleta de Colores Pro Max */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F7FB;
    --bg-dark: #070B14;
    --text-main: #0F172A;
    --text-light: #475569;
    --text-white: #F8FAFC;
    --accent-brand: #0284C7; /* Azul fuerte para agua/confianza */
    --accent-hover: #0369A1;
    --whatsapp: #25D366;
    --whatsapp-hover: #1EBE5D;
    --error-red: #EF4444;

    /* Tipografía */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaciados y medidas */
    --max-width: 1150px;
    --section-padding-desk: 120px 24px;
    --section-padding-mob: 70px 20px;
    --border-radius: 16px;
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(2, 132, 199, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    line-height: 1.2;
    color: var(--text-main);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.text-center { text-align: center; }

/* Botones y Efectos WOW */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-brand {
    background-color: var(--accent-brand);
    color: white;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.btn-brand:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp.pulse {
    animation: pulseGlow 2.5s infinite;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    animation: none;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Nav / Sticky Header Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1100;
    height: 100%;
}

.logo-img {
    height: 150px;
    max-height: 150px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
    transform: scale(1);
    transform-origin: left center;
}

.header.scrolled .logo-img {
    filter: none;
}

/* Enlaces de Navegación */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.header.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--accent-brand);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.header.scrolled .nav-links a::after {
    background-color: var(--accent-brand);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown de Servicios en Header */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    color: var(--text-main) !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--accent-brand) !important;
}

/* Contenedor de acciones del header */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
    animation: none;
}

/* Botón de Menú Hamburguesa */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.header.scrolled .hamburger span,
.hamburger.open span {
    background-color: var(--text-main);
}

/* Hero Section - Above The Fold Fix */
.hero {
    padding: 120px 20px 80px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(2, 132, 199, 0.15) 0%, rgba(7, 11, 20, 0.95) 70%),
                linear-gradient(to bottom, rgba(7, 11, 20, 0.8) 0%, rgba(7, 11, 20, 1) 100%),
                url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
    z-index: 0;
    filter: blur(50px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 5.5rem);
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero h1 span {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    background: linear-gradient(135deg, #38BDF8, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Tagline del Hero */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #F59E0B; /* Color ámbar premium */
    font-weight: 700;
    margin-bottom: 24px;
}

.tagline-line {
    width: 24px;
    height: 2px;
    background-color: #F59E0B;
    display: inline-block;
}

/* Viñetas / Características inline */
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 45px;
}

.bullet-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 500;
}

.bullet-item::before {
    content: '•';
    color: #F59E0B; /* Viñeta en ámbar */
    font-size: 1.4rem;
    margin-right: 8px;
    line-height: 1;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #94A3B8;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #E2E8F0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, 0.5);
}

/* Secciones Generales */
.section {
    padding: var(--section-padding-desk);
    position: relative;
}

.section-light { background-color: var(--bg-primary); }
.section-gray { background-color: var(--bg-secondary); }

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Problema (Agitación) */
.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pain-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfefe 100%);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--error-red) 0%, #f87171 100%);
    transition: height 0.3s ease;
}

.pain-card:hover::before {
    height: 6px;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.25);
}

.pain-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--error-red);
    background: rgba(239, 68, 68, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pain-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error-red);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--error-red);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
}

.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-card p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* Solución / Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.03) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 132, 199, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(2, 132, 199, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-brand);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: rotate(0deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--accent-brand);
    font-weight: 600;
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-hover);
}

/* Grilla de servicios de 4 columnas en PC */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Urgencia / CTA Franja */
.urgency-banner {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateBG 15s linear infinite;
}

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

.urgency-banner h2 {
    color: white;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

/* Testimonios */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.stars {
    color: #FBBF24;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars svg {
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-main);
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.client-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-secondary), #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-brand);
    font-family: var(--font-headings);
    font-size: 1.1rem;
}

.client-name {
    font-weight: 700;
    color: var(--text-main);
}

.client-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Proceso */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    font-family: var(--font-headings);
    box-shadow: 0 10px 20px rgba(7, 11, 20, 0.15);
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ */
.faq-container {
    max-width: 1050px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(2, 132, 199, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    background: white;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-brand);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--accent-brand) !important;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.5rem !important;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    color: var(--text-light);
    opacity: 0;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    padding: 8px 24px 32px;
    opacity: 1;
}

/* CTA Final */
.cta-final {
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(2, 132, 199, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.cta-final p {
    font-size: 1.25rem;
    color: #94A3B8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Sección Paso a Paso con Imagen de Fondo Local y Glassmorphism */
.steps-section-bg {
    position: relative;
    padding: 120px 24px;
    color: white;
    overflow: hidden;
}

.steps-section-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.95) 100%),
                url('../Destaparte%20fotos/destapaciones_con_maquina_saavedra.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.steps-section-bg .container {
    position: relative;
    z-index: 1;
}

.steps-section-bg .step-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white !important;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.steps-section-bg .step-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-5px);
    border-color: rgba(2, 132, 199, 0.3) !important;
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.15);
}

.steps-section-bg .step-number {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%) !important;
    color: white !important;
    font-size: 2.2rem !important;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.steps-section-bg .step-card h4 {
    color: white !important;
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.steps-section-bg .step-card p {
    color: #94A3B8 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Redesign - 3 Columnas */
.footer {
    background: #04070D;
    color: white;
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    text-align: left;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img-footer {
    height: 60px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    color: #94A3B8;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 5px;
}

.footer-about-text strong {
    color: white;
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
    font-family: var(--font-headings);
    font-weight: 800;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-brand);
}

.footer-seo-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-seo-links li {
    margin-bottom: 12px;
}

.footer-seo-links a {
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-seo-links a:hover {
    color: var(--accent-brand);
}

.footer-contact-item {
    color: #94A3B8;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item strong {
    color: white;
}

.footer-social-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

.social-icon-btn.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-icon-btn.tt:hover { background: #010101; border-color: #69C9D0; }
.social-icon-btn.wa:hover { background: #25D366; border-color: transparent; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-navigation {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-navigation a {
    color: #94A3B8;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links-navigation a:hover {
    color: var(--accent-brand);
}

.copyright {
    color: #475569;
    font-size: 0.95rem;
}

/* Ajustes responsivos para Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-wrapper {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-navigation {
        justify-content: center;
    }
}

/* Sticky WhatsApp flotante */
.wp-sticky {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
}

.wp-sticky.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    animation: wpPulse 2.5s infinite;
}

@keyframes wpPulse {
    0%   { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

.wp-sticky:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
    animation: none;
}

.footer-links {
    margin-bottom: 40px;
    color: #64748B;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-brand);
}

.copyright {
    color: #475569;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

/* CLASES DE ANIMACIÓN */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Media Queries Desktop cortas */
@media (max-height: 750px) {
    .hero {
        padding-top: 110px; 
    }
    .hero h1 {
        font-size: clamp(2.2rem, 4.5vw, 4.5rem);
        margin-bottom: 15px;
    }
    .hero p {
        margin-bottom: 25px;
    }
    .trust-badges {
        margin-top: 30px;
    }
}

.nav-wa-mobile {
    display: none;
}

/* Estilos de Cobertura y Detalle SEO Local */
.services-header-badge {
    display: inline-block;
    background: rgba(2, 132, 199, 0.1);
    color: var(--accent-brand);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.services-areas-box {
    margin-top: 60px;
    background: white;
    border-radius: var(--border-radius);
    padding: 45px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.areas-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.area-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(2, 132, 199, 0.15);
}

.area-check {
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.area-info strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-headings);
}

.area-info p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.4;
}

.seo-keywords-container {
    margin-top: 50px;
    padding: 24px;
    background: rgba(2, 132, 199, 0.02);
    border-radius: 12px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    border: 1px dashed rgba(2, 132, 199, 0.15);
}

.seo-keywords-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.seo-keywords-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
}

.seo-keywords-tags span {
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    color: var(--text-light);
    font-size: 0.82rem;
}

/* Formulario Contacto */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--accent-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-brand);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Secciones Informativas / Nosotros */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    color: var(--accent-brand);
    flex-shrink: 0;
    margin-top: 4px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mob);
    }
    
    .header-right .header-cta {
        display: none;
    }

    .nav-wa-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #25D366;
        color: white !important;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        transition: background 0.3s ease, transform 0.3s ease;
        white-space: nowrap;
        width: 100%;
        max-width: 220px;
        text-decoration: none;
    }

    .nav-wa-mobile:hover {
        background: #1EBE5D !important;
        transform: scale(1.03);
    }

    .nav-wa-mobile::after {
        display: none !important;
    }

    .btn:not(.header-cta) {
        width: 100%;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
        min-height: 100vh;
        height: auto;
    }
    
    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        margin-bottom: 16px;
        letter-spacing: -1px;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 35px;
    }
    
    .services-grid, .pain-points, .testimonials, .process-steps, .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 24px;
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto; /* Permite scroll vertical interno si se despliega el menú */
    }
    
    .nav-links a {
        color: var(--text-main) !important;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-brand) !important;
    }

    .nav-links a::after {
        background-color: var(--accent-brand) !important;
    }

    .nav-links.open {
        right: 0;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Estilos de Dropdown para Móvil */
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-item-dropdown .dropdown-menu,
    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.active .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        max-width: 260px;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 12px;
        padding: 10px 0;
        margin-top: 15px;
        display: none;
        flex-direction: column;
        align-items: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: flex !important;
    }

    .dropdown-menu a {
        padding: 12px 16px !important;
        font-size: 1rem !important;
        color: var(--text-main) !important;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu a:hover {
        color: var(--accent-brand) !important;
        background: transparent;
    }
    
    .services-areas-box {
        padding: 30px 15px;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .logo-img {
        height: 50px;
    }
}

/* Custom Success Modal (Glassmorphism & animations) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 20, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 28px;
    padding: 50px 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-card {
    transform: scale(1) translateY(0);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 800;
}

.modal-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-close-btn {
    background: var(--accent-brand);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.2);
}

.modal-close-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

/* Sección de Cobertura y Mapa */
.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    height: 480px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay-card {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    max-width: 320px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.6);
}

.map-overlay-card h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 700;
}

.map-overlay-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.map-overlay-card .btn-maps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4285F4;
    color: white !important;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.2);
    width: 100%;
}

.map-overlay-card .btn-maps:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
    .map-overlay-card {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto 0;
        max-width: 100%;
        backdrop-filter: none;
        background: white;
    }
}

/* ==========================================================================
   REVIEWS SLIDER CAROUSEL
   ========================================================================== */
.carousel-container {
    position: relative;
    max-width: 100%;
}
.carousel-track-container {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
.review-card {
    flex: 0 0 100%;
    background: white;
    border: 1px solid #E2E8F0;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text-main);
    font-weight: bold;
    transition: all 0.2s;
}
.carousel-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-brand);
    border-color: var(--accent-brand);
}
.carousel-btn.prev-btn {
    left: -20px;
}
.carousel-btn.next-btn {
    right: -20px;
}
@media (max-width: 1100px) {
    .carousel-btn.prev-btn { left: -10px; }
    .carousel-btn.next-btn { right: -10px; }
}
@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    .carousel-btn.prev-btn { left: 5px; }
    .carousel-btn.next-btn { right: 5px; }
}
