html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* =========================================
   LOCAL FONTS
========================================= */
@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Normal */
    font-style: normal;
}

@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sansation', sans-serif;
}

body {
    background: url('../assets/fondo.png') no-repeat top center;
    background-color: #010D18;
    /* fallback color */
    color: white;
    overflow-x: hidden;
    width: 100%;
}

/* =========================================
   NAVBAR (STICKY)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-links {
    flex: 1;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-links a:hover:not(.nav-disabled) {
    color: #4bb3e6;
    transform: translateY(-2px);
}

/* Underline animation on hover */
.nav-links a:not(.nav-disabled)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4bb3e6;
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.nav-disabled)::after {
    width: 100%;
}

.nav-disabled {
    color: #555 !important;
    cursor: not-allowed;
    text-decoration: line-through;
}

.nav-logo {
    flex: 0;
    /* Keep it perfectly centered by not letting it grow, while left and right navs use flex:1 */
    text-align: center;
}

.nav-logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-social {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-social a img {
    width: 45px;
    transition: transform 0.3s ease, filter 0.3s;
    opacity: 0.8;
}

.nav-social a:hover img {
    transform: translateY(-3px);
    opacity: 1;
    filter: drop-shadow(0px 0px 5px rgba(75, 179, 230, 0.5));
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-top: 90px;
    /* Offset for the sticky navbar */
}

/* Background image */

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 25%;
}

/* Overlay */

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

/* Content */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-kicker {
    color: #4bb3e6;
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 40px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #4bb3e6;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid #4bb3e6;
}

.btn-primary:hover {
    background: #3498db;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: white;
    color: #4bb3e6;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.trust-badge {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(75, 179, 230, 0.15);
    border-color: rgba(75, 179, 230, 0.4);
    transform: translateY(-2px);
}

.trust-badge .check-icon {
    color: #4bb3e6;
    font-size: 14px;
}

/* Logo and Social are now in .navbar, removing old .hero-logo / .hero-social */

/* =========================================
   TEXT UTILITIES
========================================= */
.text-blue {
    color: #4bb3e6;
}

.text-blue-light {
    color: #4bb3e6;
}

/* You could use lighter blue if needed */
.highlight-blue {
    color: #4bb3e6;
}

/* =========================================
   SEC 2: INFO SECTION
========================================= */
.info-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-container {
    max-width: 900px;
    width: 100%;
}

.info-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.info-title-line-1 {
    font-size: 52px;
}

.info-title-line-2 {
    font-size: 61.5px;
    /* Slightly larger to match the width of line 1 */
}

.info-heads {
    margin: 40px auto;
    max-width: 600px;
    /* Placeholder styles below if img breaks */
    min-height: 150px;
    background-size: contain;
}

.info-heads img {
    width: 100%;
    height: auto;
    display: block;
}

.info-text-italic {
    font-style: italic;
    font-size: 26px;
    /* Slightly larger base */
    color: #aaa;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
    /* Center aligned */
    margin-top: 50px;
}

.info-text-normal {
    font-size: 26px;
    /* Match base */
    color: #ccc;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    /* Center aligned */
}


/* =========================================
   SEC 3: PRICING SECTION
========================================= */
.pricing-section {
    min-height: 100vh;
    padding: 80px 5%;
    position: relative;
    background: url('../assets/onda_derecha.png') no-repeat center right / cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-header {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.pricing-bg-img {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    z-index: 0;
    opacity: 0.8;
}

.pricing-subtitle {
    font-size: 28px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.pricing-description {
    font-size: 18px;
    color: #ccc;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.price-highlight {
    font-weight: 700;
    color: #4bb3e6;
    font-style: italic;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(45, 55, 65, 0.4);
    border-radius: 20px;
    padding: 50px 40px;
    /* Increased padding */
    flex: 1;
    /* Stretch to fill space */
    min-width: 320px;
    max-width: 400px;
    /* Larger max width */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: rgba(29, 74, 108, 0.4);
    border: 1px solid rgba(75, 179, 230, 0.4);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    right: 20px;
    background: white;
    color: #4bb3e6;
    font-size: 16px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-type {
    color: #4bb3e6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-price {
    font-size: 64px;
    /* Increased from 54px */
    font-weight: 800;
    margin-bottom: 15px;
}

.card-price .months {
    font-size: 20px;
    /* Increased from 16px */
    font-weight: 300;
    color: #999;
}

.card-desc {
    font-size: 16px;
    /* Increased from 14px */
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-card {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #4bb3e6, #2d8ebf);
    color: white;
    padding: 12px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 30px;
    transition: 0.3s;
}

.btn-card:hover {
    filter: brightness(1.2);
}

.btn-card.inverted {
    background: white;
    color: #010D18;
}

.card-features {
    list-style: none;
}

.card-features li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-box {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #4bb3e6;
    border-radius: 4px;
    position: relative;
}

.check-box::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid #4bb3e6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
    left: 5px;
}

/* =========================================
   SEC 4: PROCESS SECTION
========================================= */
.process-section {
    min-height: 100vh;
    padding: 80px 5%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.process-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.title-main {
    font-size: 36px;
    font-weight: 700;
}

.title-highlight {
    font-size: 40px;
    color: #4bb3e6;
    font-weight: 800;
}

.title-q {
    font-size: 100px;
    /* Massive size to span both lines */
    color: white;
    font-weight: 700;
    line-height: 0.8;
    /* Tight line height so it doesn't push adjacent elements away */
    padding-bottom: 5px;
    /* Alignment tweak */
}

.process-flow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 100px;
}

.process-step {
    background: #0A1624;
    /* Dark navy */
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 120px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #4bb3e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents the icon box from being squished */
}

.step-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.fallback-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.step-content p {
    font-size: 14px;
    color: #4b8ba8;
    /* Slightly blue-tinted light grey */
    line-height: 1.4;
}

.flow-arrow {
    position: absolute;
    z-index: 1;
}

/* Layout hack for the zigzag pattern */
.step-1 {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0px;
}

.step-2 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 120px;
}

.step-3 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0px;
}

.step-4 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 120px;
}

/* Arrow layout using CSS */
.flow-path {
    position: absolute;
    z-index: 1;
    object-fit: contain;
    /* Let the browser sort out image ratios, prevent distortion */
}

.path-1 {
    top: 55px;
    left: 44%;
    width: 25%;
}

.path-2 {
    top: 185px;
    left: 30%;
    width: 25%;
}

.path-3 {
    top: 350px;
    left: 44%;
    width: 25%;
}

/* =========================================
   SEC 5: FAQ
========================================= */
.faq-section {
    min-height: 100vh;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: url('../assets/onda_izquierda.png') no-repeat left center;
    background-size: cover;
}

.faq-header {
    text-align: right;
    width: 100%;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    /* Increased gap */
    width: 100%;
    max-width: 1300px;
    /* Increased max width */
    margin: 0 auto;
    padding: 0 40px;
    /* Room for exterior elements */
}

.faq-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Push image toward center */
    align-items: center;
    position: relative;
    max-width: 45%;
}

.product-img {
    max-width: 100%;
    max-height: 85vh;
    /* Larger image */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.5));
}

.faq-slider-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 650px;
    /* Wider slider */
}

.faq-header {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 44px;
    font-weight: 800;
    color: white;
}

.faq-slider {
    width: 100%;
    background: #133856;
    border-radius: 25px;
    padding: 80px 60px;
    /* Added more internal breathing room */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
}

.faq-card {
    display: none;
    width: 100%;
    text-align: left;
    animation: fadeEffect 0.5s;
}

.faq-card.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-question {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.faq-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 30px;
}

.faq-answer {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.4;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
    z-index: 5;
    font-family: monospace;
    /* For generic arrows to look decent */
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

.faq-dots {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background: transparent;
    /* Seamless blend */
    position: relative;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center the two main chunks vertically */
    gap: 80px;
    padding-bottom: 100px;
}

/* LEFTSIDE (Brand & Nav) */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Separating logo block from nav block heavily */
    max-width: 450px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 25px;
}

.footer-desc {
    color: #ffffff;
    font-size: 26px;
    /* Much larger text */
    line-height: 1.4;
    font-weight: 300;
}

.footer-nav-social {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.footer-social-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Distributing space naturally */
}

/* Remove all hacks to let the original PNGs show directly */
.footer-social-column a img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
    object-fit: contain;
}

.footer-social-column a:hover img {
    transform: scale(1.1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Match icon spacing closely */
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #4bb3e6;
}

/* RIGHTSIDE (WhatsApp) */
.footer-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.whatsapp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 80px 40px;
    /* More padding equals more total space */
    min-height: 500px;
    /* Taller area */
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.cta-title {
    font-size: 52px;
    /* Bigger title */
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-whatsapp-large {
    display: inline-block;
    background: white;
    color: #0A1624;
    font-size: 26px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 450px;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.footer-copyright {
    position: absolute;
    right: 30px;
    /* Move cleanly to the edge of the entire layout */
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    /* Text reading from bottom to top */
    color: rgba(255, 255, 255);
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* BOTTOM CONTACT BAR */
.footer-bottom-bar {
    width: 100%;
    background: transparent;
    /* No cut */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 40px 20px;
    /* Bigger bottom padding */
    gap: 20px;
    font-size: 18px;
    /* Much larger readable text */
    color: #ffffff;
    border-top: none;
    /* No cut line */
}

.bar-separator {
    color: #444;
}

/* =========================================
   ANIMATIONS & TRANSITIONS
========================================= */
.section-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
========================================= */
.mobile-menu-btn {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 48px;
    }

    .pricing-bg-text {
        font-size: 80px;
    }

    .process-flow {
        gap: 40px 50px;
    }

    .arrow-1,
    .arrow-3 {
        width: 25%;
        left: 35%;
    }

    .arrow-2 {
        left: 15%;
        width: 70%;
    }
}

@media (max-width: 768px) {

    /* ============================
       1. NAVBAR & MENU HAMBURGUESA
       ============================ */
    .navbar {
        padding: 15px 5%;
    }

    .nav-social,
    .nav-links {
        display: none;
        /* Hide default nav items */
    }

    .nav-logo {
        text-align: left;
        flex: 1;
    }

    .nav-logo img {
        height: 50px;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2000;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background-color: white;
        transition: 0.3s;
    }

    /* Menu Toggle Active State Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Nav Links Panel */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(1, 13, 24, 0.95);
        backdrop-filter: blur(15px);
        padding: 30px 5%;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(75, 179, 230, 0.2);
    }

    .nav-links.active a {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* ============================
       2. HERO SECTION
       ============================ */
    .hero {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        opacity: 0.15;
    }

    .hero::before {
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-kicker {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-top: 30px;
    }

    .trust-badge {
        font-size: 14px;
        padding: 6px 12px;
        width: 100%;
        justify-content: flex-start;
    }

    /* ============================
       3. INFO SECTION (SOLUCIONES)
       ============================ */
    .info-section {
        padding: 60px 5%;
    }

    .info-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .info-title-line-1 {
        font-size: 32px;
    }

    .info-title-line-2 {
        font-size: 36px;
    }

    .info-text-italic {
        font-size: 20px;
        margin-top: 30px;
    }

    .info-text-normal {
        font-size: 18px;
    }

    /* ============================
       4. SISTEMAS (PRECIOS)
       ============================ */
    .pricing-section {
        padding: 60px 5%;
    }

    .pricing-bg-img {
        width: 90%;
        top: -30px;
    }

    .pricing-subtitle {
        font-size: 18px;
    }

    .pricing-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        padding: 40px 20px;
        /* Added to prevent side padding overflow */
    }

    /* ============================
       5. PROCESO (PASO A PASO)
       ============================ */
    .process-section {
        padding: 60px 5%;
    }

    .process-title-wrapper {
        gap: 8px;
        /* Reduce gap to fit in narrow screens */
    }

    .title-main {
        font-size: 22px;
        /* Reduced from 28px */
    }

    .title-highlight {
        font-size: 26px;
        /* Reduced from 30px */
    }

    .title-q {
        font-size: 45px;
        /* Reduced from 60px */
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-path {
        display: none;
    }

    .process-step {
        height: auto;
        min-height: 120px;
        flex-direction: row;
        /* Restored horizontal layout */
        text-align: left;
        /* Restored left alignment */
        padding: 20px;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    /* ============================
       6. PREGUNTAS FRECUENTES (FAQ)
       ============================ */
    .faq-section {
        padding: 60px 5%;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .faq-image {
        max-width: 80%;
        justify-content: center;
    }

    .product-img {
        max-height: 40vh;
    }

    .faq-slider-container {
        align-items: center;
        width: 100%;
    }

    .faq-main-title {
        font-size: 32px;
        text-align: center;
    }

    .faq-slider {
        padding: 40px 30px;
        min-height: 350px;
        text-align: center;
    }

    .faq-card {
        text-align: center;
    }

    .faq-question {
        font-size: 26px;
    }

    .faq-answer {
        font-size: 18px;
    }

    .slider-btn {
        display: none;
    }

    .faq-dots {
        justify-content: center;
    }

    .dot {
        width: 20px;
        height: 20px;
    }

    /* ============================
       7. FOOTER
       ============================ */
    .footer-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 5%;
        padding-bottom: 0px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .footer-desc {
        font-size: 16px;
        /* Reduced from 20px */
    }

    .footer-nav-social {
        flex-direction: row;
        /* Side-by-side layout: links on left, socials on right */
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        max-width: 350px;
        gap: 20px;
    }

    .footer-nav {
        align-items: flex-start;
        text-align: left;
    }

    .footer-social-column {
        flex-direction: column;
        /* Vertical icons */
        justify-content: flex-start;
    }

    .footer-nav a {
        font-size: 18px;
    }

    .footer-right {
        justify-content: center;
    }

    .whatsapp-cta {
        padding: 40px 20px;
        min-height: 350px;
    }

    .cta-title {
        font-size: 36px;
    }

    .btn-whatsapp-large {
        font-size: 20px;
        padding: 15px 20px;
    }

    .site-footer {
        padding-bottom: 50px;
    }

    .footer-copyright {
        position: absolute;
        bottom: 15px;
        left: 0;
        top: auto;
        right: auto;
        width: 100%;
        transform: none;
        text-align: center;
        margin-top: 0;
        font-size: 14px;
        white-space: normal;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 14px;
        padding: 20px 5%;
    }

    .bar-separator {
        display: none;
    }

    .footer-logo {
        max-width: 90%;
    }
}