html {
    scroll-behavior: smooth;
}

/* Ocultar puntero por defecto del navegador para usar solo el puntero personalizado */
*, html, body, a, button, input, textarea, summary, select {
    cursor: none !important;
}

/*=================
        Roots
=================*/

:root {
    --Color-primary: #FF364D;
    --Color-secondary: #e0283e;
    --Color-tertiary: #171645;
    --Color-tertiary-dark: #090822;
    --Color-primary-light: #ff2217;

    --Color-primary-75: rgba(255, 54, 77, 0.75);
    --Color-primary-50: rgba(255, 54, 77, 0.50);
    --Color-primary-25: rgba(255, 54, 77, 0.25);
    --Color-primary-10: rgba(255, 54, 77, 0.10);

    --Color-tertiary-75: rgba(23, 22, 69, 0.75);
    --Color-tertiary-50: rgba(23, 22, 69, 0.50);
    --Color-tertiary-25: rgba(23, 22, 69, 0.25);

    --Color-whatsapp: #25D366;
    --Color-whatsapp-hover: #1da851;

    --Color-text-light: #ffffff;
    --Color-text-muted: #d1d5db;

    --Font-family: 'Poppins', sans-serif;
    --font-family: var(--Font-family);

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 64px;

    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/*=================
     Globales
=================*/

* {
    box-sizing: border-box;
}

body {
    font-family: var(--Font-family);
    background-color: var(--Color-tertiary);
    color: var(--Color-text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/*=================
  Fondo Líquido Desenfocado (Blobs)
=================*/

.bg-liquid-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.8;
    will-change: transform;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: var(--Color-primary-75);
    top: -100px;
    right: -100px;
    animation: floatLiquid1 20s ease-in-out infinite alternate;
}

.blob-2 {
    width: 550px;
    height: 550px;
    background: var(--Color-primary-50);
    bottom: 10%;
    left: -150px;
    animation: floatLiquid2 25s ease-in-out infinite alternate;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: var(--Color-primary-25);
    top: 40%;
    right: 15%;
    animation: floatLiquid3 22s ease-in-out infinite alternate;
}

@keyframes floatLiquid1 {
    0% { transform: translate(0, 0) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: translate(-100px, 120px) scale(1.2); border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
    100% { transform: translate(80px, 200px) scale(0.9); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@keyframes floatLiquid2 {
    0% { transform: translate(0, 0) scale(1); border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
    50% { transform: translate(150px, -100px) scale(1.15); border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%; }
    100% { transform: translate(-80px, -180px) scale(0.95); border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
}

@keyframes floatLiquid3 {
    0% { transform: translate(0, 0) scale(1); border-radius: 60% 40% 50% 50% / 30% 70% 30% 70%; }
    50% { transform: translate(-120px, -150px) scale(1.3); border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; }
    100% { transform: translate(100px, 80px) scale(1); border-radius: 60% 40% 50% 50% / 30% 70% 30% 70%; }
}

/*=================
  Puntero Personalizado
=================*/

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--Color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 2px solid var(--Color-primary-75);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.custom-cursor-follower.cursor-active {
    width: 55px;
    height: 55px;
    background-color: var(--Color-primary-25);
    border-color: var(--Color-primary);
}

@media (hover: none) {
    *, html, body, a, button, input, textarea, summary, select {
        cursor: auto !important;
    }
    .custom-cursor-dot,
    .custom-cursor-follower {
        display: none !important;
    }
}

/*=================
  Menú Superior / Header Premium
=================*/

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-3xl);
    background: rgba(23, 22, 69, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 54, 77, 0.2);
    transition: all 0.4s ease;
}

.header.header-scrolled {
    padding: var(--spacing-xs) var(--spacing-3xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background: rgba(9, 8, 34, 0.95);
    border-bottom-color: rgba(255, 54, 77, 0.4);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--Color-text-light);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: var(--spacing-xxs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--Color-primary);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    color: var(--Color-primary);
}

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

.nav-cta {
    margin: 0;
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-full);
}

/* Botón Hamburguesa Móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--Color-text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

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

.hero {
    display: flex;
    position: relative;
    padding: var(--spacing-4xl) var(--spacing-3xl);
    margin-bottom: 0;
    overflow: hidden;
    background-image: radial-gradient(circle at 80% 50%, rgba(255, 54, 77, 0.18) 0%, transparent 55%), url('../img/hero.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-2xl);
    min-height: 85vh;
}

.hero h1 {
    text-align: center;
    font-size: var(--font-size-3xl);
    line-height: 1.2;
    font-family: var(--Font-family);
    text-transform: uppercase;
    color: var(--Color-primary);
    margin: var(--spacing-md) 0 var(--spacing-xs) 0;
    text-shadow: 0 4px 20px rgba(255, 54, 77, 0.3);
}

.hero h2 {
    text-align: center;
    font-size: var(--font-size-xl);
    line-height: 1.3;
    font-family: var(--Font-family);
    color: var(--Color-text-light);
    margin: 0;
}

.hero p {
    text-align: center;
    font-size: var(--font-size-md);
    line-height: 1.6;
    font-family: var(--Font-family);
    color: var(--Color-text-light);
    margin: var(--spacing-xl) 0;
    max-width: 85%;
}

.badge-tag {
    text-align: center;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    font-family: var(--Font-family);
    color: var(--Color-text-light);
    margin: 0;
    background-color: var(--Color-primary-50);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1px solid var(--Color-primary-75);
    letter-spacing: 1.5px;
    display: inline-block;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px var(--Color-primary-25);
}

.content {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex: 1.2;
    justify-content: center;
}

.model {
    display: flex;
    align-content: center;
    align-items: center;
    flex: 1;
    flex-direction: column;
}

.model img {
    max-width: 85%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.ctabtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--Color-primary);
    color: var(--Color-text-light);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-sm);
    border: 1px solid var(--Color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px var(--Color-primary-25);
}

.pulse-cta {
    animation: pulseCta 3s infinite;
}

@keyframes pulseCta {
    0% { box-shadow: 0 0 0 0 rgba(255, 54, 77, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 54, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 54, 77, 0); }
}

.ctabtn:hover {
    background: var(--Color-secondary);
    border-color: var(--Color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--Color-primary-50);
}

/*=================
     NOSOTROS
=================*/

.nosotros {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-4xl) var(--spacing-xl);
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-xl);
    line-height: 1.35;
    font-family: var(--Font-family);
    color: var(--Color-text-light);
    max-width: 850px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
}

.cards-container {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    font-family: var(--Font-family);
    text-align: center;
    border-radius: var(--radius-lg);
    flex: 1 1 280px;
    max-width: 360px;
    background: rgba(23, 22, 69, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid var(--Color-primary-25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--Color-text-light);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--Color-primary);
    box-shadow: 0 15px 35px var(--Color-primary-25);
}

.card p {
    margin: 0;
    font-size: var(--font-size-md);
    color: var(--Color-text-light);
}

.card span {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    color: var(--Color-primary);
    margin-bottom: var(--spacing-xs);
}

/*=================
   CONTENEDOR GENÉRICO
=================*/

.container {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
    gap: var(--spacing-lg);
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.container h2 {
    text-align: center;
    font-size: var(--font-size-2xl);
    line-height: 1.25;
    font-family: var(--Font-family);
    text-transform: uppercase;
    color: var(--Color-primary);
    margin-bottom: var(--spacing-xs);
    max-width: 900px;
}

.container p {
    text-align: center;
    font-size: var(--font-size-md);
    color: var(--Color-text-muted);
    max-width: 800px;
    margin: 0 0 var(--spacing-md) 0;
}

.problem-grid,
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    width: 100%;
    margin: var(--spacing-md) 0;
}

.problem-card,
.benefit-card {
    text-align: left;
    align-items: flex-start;
    flex: 1 1 260px;
    max-width: 270px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

.problem-card span,
.benefit-card span {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    display: block;
    color: var(--Color-primary);
}

.quote-tag {
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    font-family: var(--Font-family);
    color: var(--Color-primary);
    font-style: italic;
    max-width: 750px;
    background: var(--Color-primary-25);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--Color-primary);
}

.subtitle-tag {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--Color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*=================
   TABLA DE SERVICIOS
=================*/

.table-wrapper {
    width: 100%;
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(23, 22, 69, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid var(--Color-primary-25);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

th, td {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
    background-color: var(--Color-primary-50);
    color: var(--Color-text-light);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    color: var(--Color-text-muted);
    font-size: var(--font-size-sm);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(255, 54, 77, 0.08);
}

.pilar {
    color: var(--Color-primary) !important;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .table-wrapper {
        box-shadow: none;
    }

    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: var(--spacing-xl);
        background: rgba(23, 22, 69, 0.75);
        backdrop-filter: blur(12px);
        border: 1px solid var(--Color-primary-25);
        border-radius: var(--radius-xl);
        padding: var(--spacing-lg);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    td {
        display: flex;
        flex-direction: column;
        padding: var(--spacing-xs) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    td:last-child {
        border-bottom: none;
    }

    td[data-label]::before {
        content: attr(data-label);
        font-weight: var(--font-weight-bold);
        color: var(--Color-primary);
        font-size: var(--font-size-xs);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: var(--spacing-xxs);
    }
}

/*=================
   PASOS DE PROCESO
=================*/

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
    width: 100%;
    margin-top: var(--spacing-md);
}

.paso {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: rgba(23, 22, 69, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid var(--Color-primary-25);
    border-radius: var(--radius-xl);
    max-width: 350px;
    flex: 1 1 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.paso:hover {
    transform: translateY(-8px);
    border-color: var(--Color-primary);
}

.paso-number {
    width: 45px;
    height: 45px;
    background: var(--Color-primary-25);
    color: var(--Color-primary);
    font-weight: var(--font-weight-black);
    font-size: var(--font-size-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Color-primary-50);
}

.paso span {
    font-size: var(--font-size-lg);
    color: var(--Color-primary);
    font-weight: var(--font-weight-bold);
}

.paso p {
    color: var(--Color-text-muted) !important;
    margin: 0;
    text-align: left !important;
}

/*=================
   CTA BANNER SECTION
=================*/

.cta-section {
    background: linear-gradient(135deg, rgba(23, 22, 69, 0.95) 0%, rgba(42, 20, 53, 0.95) 50%, var(--Color-primary-50) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid var(--Color-primary-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4xl) var(--spacing-2xl);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    margin: var(--spacing-3xl) auto !important;
}

.cta-section h2 {
    color: var(--Color-text-light) !important;
}

.cta-section p {
    color: var(--Color-text-muted) !important;
}

.cta-section .ctabtn {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-2xl);
}

.cta-section small {
    color: var(--Color-text-light);
    opacity: 0.8;
}

/*=================
     FORMULARIO
=================*/

.formcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    margin: var(--spacing-3xl) auto;
    max-width: 650px;
    background: rgba(23, 22, 69, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--Color-primary-50);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.formcontainer p {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--Color-primary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.formcontainer form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.formcontainer input,
.formcontainer textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--Color-text-light);
    font-family: var(--Font-family);
    font-size: var(--font-size-md);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.formcontainer input::placeholder,
.formcontainer textarea::placeholder {
    color: var(--Color-text-muted);
}

.formcontainer input:focus,
.formcontainer textarea:focus {
    border-color: var(--Color-primary);
    box-shadow: 0 0 14px var(--Color-primary-50);
}

.formcontainer textarea {
    min-height: 120px;
    resize: vertical;
}

.wa-btn {
    background: var(--Color-whatsapp) !important;
    border-color: var(--Color-whatsapp) !important;
    color: #ffffff !important;
    font-weight: var(--font-weight-bold);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    font-size: var(--font-size-md);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    background: var(--Color-whatsapp-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/*=================
   PREGUNTAS FRECUENTES (FAQ - DARK GLASS)
=================*/

.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 850px;
    margin-top: var(--spacing-md);
}

details {
    background: rgba(23, 22, 69, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid var(--Color-primary-25);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

details[open] {
    border-color: var(--Color-primary);
    box-shadow: 0 10px 30px var(--Color-primary-25);
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--Color-text-light);
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-title {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--Color-primary-25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--Color-primary-50);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--Color-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

details[open] .faq-icon {
    background: var(--Color-primary);
    transform: rotate(180deg);
}

details[open] .faq-icon::before {
    background: var(--Color-text-light);
}

details[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-content {
    padding-top: var(--spacing-md);
}

.faq-content p {
    color: var(--Color-text-muted) !important;
    line-height: 1.6;
    margin: 0;
    text-align: left !important;
}

/*=================
       FOOTER
=================*/

footer {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--Color-tertiary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--Color-text-muted);
    font-size: var(--font-size-sm);
}

footer p {
    margin: var(--spacing-xxs) 0;
}

footer strong {
    color: var(--Color-text-light);
}

/*=================
     MEDIA QUERIES
=================*/

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: var(--spacing-3xl) var(--spacing-lg);
        min-height: auto;
    }

    .hero p {
        max-width: 100%;
    }

    .model img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(9, 8, 34, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-xl);
        flex-direction: column;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid var(--Color-primary-25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    .nav-open .nav {
        transform: translateY(0%);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: var(--font-size-2xl);
    }

    .container h2 {
        font-size: var(--font-size-xl);
    }

    .cards-container,
    .steps-grid,
    .problem-grid,
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .card,
    .paso,
    .problem-card,
    .benefit-card {
        max-width: 100%;
        width: 100%;
    }

    .ctabtn {
        font-size: var(--font-size-md);
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .blob-1, .blob-2, .blob-3 {
        width: 280px;
        height: 280px;
        filter: blur(75px);
    }
}