:root {
    --primary-bg: #1a2a4c;
    --accent-color: #ff8a00;
    --text-light: #f0f4f8;
    --text-dark: #333;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Above The Fold Wrapper (OPTIMIZADO) --- */
.above-the-fold {
    /* Mantenemos el 100vh para el efecto de pantalla completa en desktop,
       pero reducimos el padding para compactar el contenido */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px 0;
}

/* --- Header --- */
.main-header {
    padding: 10px 0; /* Reducido */
    text-align: center;
}
.main-header .logo {
    max-width: 220px; /* Reducido */
    filter: invert(1);
}

/* --- Hero Section --- */
.hero {
    padding: 15px 0; /* Reducido */
    text-align: center;
}
.hero-title {
    /* Ligeramente más pequeño en desktop, con interlineado más ajustado */
    font-size: clamp(1rem, 3vw, 1.6rem);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 20px auto; /* Margen inferior reducido */
    font-weight: 400;
}
.highlight {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 3px;
    font-weight: 800;
}

/* --- Special Offer --- */
.special-offer {
    background-color: var(--white);
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 15px 20px; /* Padding horizontal reducido */
    margin: 0 auto 20px auto; /* Margen inferior reducido */
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px; /* Espacio reducido */
}
.offer-text {
    text-align: left;
}
.offer-title-new {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.9rem; /* Reducido */
    line-height: 1;
    margin: 0 0 5px 0;
}
.offer-subtitle-new {
    color: #000;
    font-weight: 900;
    font-size: 0.75rem; /* Reducido */
    line-height: 1;
    margin: 0;
}

/* --- Countdown Timer --- */
.countdown {
    display: flex;
    align-items: center;
    gap: 4px; /* Espacio reducido */
}
.digit {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem; /* Reducido */
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 1.2em;
    text-align: center;
    line-height: 1;
}
.separator {
    color: #ff0000;
    font-size: 1.5rem; /* Reducido */
    font-weight: 700;
    padding: 0 2px;
    transform: translateY(-2px);
}

/* --- Video Player --- */
.video-container {
    position: relative;
    max-width: 700px;
    margin: 20px auto 0 auto; /* Margen superior reducido */
    overflow: hidden;
}
.main-video {
    width: 100%;
    height: 100%;
    display: block;
}
.video-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.volume-text {
    margin-top: 15px; font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}
.video-container.is-playing .video-overlay { background-color: transparent; }
.video-container.is-playing .volume-text { opacity: 0; }
.volume-button {
    background: rgba(255, 255, 255, 0.9); border: none; width: 80px; height: 80px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.volume-button:hover { transform: scale(1.1); }
.volume-button svg { width: 35px; height: 35px; color: var(--primary-bg); }
.hidden { display: none !important; }
.pause-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--white);
    text-align: center; z-index: 10; padding: 20px;
}
.pause-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 700;
    margin: 0 0 20px 0; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.pause-buttons { display: flex; gap: 15px; }
.pause-btn {
    background-color: var(--accent-color); color: var(--white); border: none;
    border-radius: 50px; padding: 12px 25px; font-weight: 700;
    font-size: 1rem; cursor: pointer; transition: transform 0.2s ease, background-color 0.2s ease;
}
.pause-btn:hover { transform: scale(1.05); }
.pause-btn.alt { background-color: transparent; border: 2px solid var(--white); }
.pause-btn.alt:hover { background-color: var(--white); color: var(--text-dark); }


/* --- Logo Carousel --- */
.logo-carousel {
    padding: 25px 0; background-color: var(--white); overflow: hidden;
    position: relative; width: 100%;
}
.logo-carousel::before, .logo-carousel::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.logo-carousel::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logo-carousel::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logos-slide {
    display: flex; white-space: nowrap; animation: 40s slide infinite linear;
}
.logos-slide img {
    height: 40px; width: auto; margin: 0 40px; filter: grayscale(100%);
    opacity: 0.6; transition: filter 0.3s ease, opacity 0.3s ease;
}
.logos-slide img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Benefits Section (OPTIMIZADO) --- */
.benefits-section {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 50px 20px; /* Padding vertical reducido */
    text-align: center;
}
.benefits-list-main {
    list-style: none; padding: 0; margin: 0 auto 30px auto; /* Margen inferior reducido */
    max-width: 800px; text-align: left;
}
.benefits-list-main li {
    display: flex; align-items: flex-start; gap: 15px;
    font-size: clamp(1rem, 2.5vw, 1.1rem); /* Ligeramente más pequeño */
    line-height: 1.5; /* Más compacto */
    margin-bottom: 15px; /* Menos espacio entre ítems */
}
.benefits-list-main .checkmark-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    color: var(--accent-color); margin-top: 5px;
}
.cta-button-main {
    display: inline-block; background: linear-gradient(to right, #ff3b3b, #ff8a00);
    color: var(--white); font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700;
    text-decoration: none; padding: 20px 60px; border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease; line-height: 1.2;
}
.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}


/* ============================================= */
/* === RESPONSIVE DESIGN (OPTIMIZADO) ========== */
/* ============================================= */

@media (max-width: 600px) {
    /* --- Ajustes para compactar el 'Above the Fold' --- */
    .above-the-fold {
        padding: 10px 0; /* Menos padding vertical */
        min-height: auto; /* Dejar que el contenido defina la altura */
    }
    .main-header .logo {
        max-width: 180px; /* Logo más pequeño */
    }
    .hero-title {
        font-size: 1.2rem; /* Texto principal más pequeño */
        margin-bottom: 20px;
        line-height: 1.2; /* Interlineado más ajustado */
    }
    .special-offer {
        flex-direction: column;
        text-align: center;
        padding: 12px; /* Menos padding */
        margin-bottom: 20px;
        gap: 10px;
    }
    .offer-text {
        margin-bottom: 10px;
    }
    .offer-title-new { font-size: 1rem; }
    .offer-subtitle-new { font-size: 0.8rem; }
    
    .countdown { gap: 8px; }
    .digit { font-size: 1.1rem; padding: 4px; }
    .separator { font-size: 1.1rem; }

    .video-container { margin-top: 20px; }
    .volume-button { width: 60px; height: 60px; }
    .volume-button svg { width: 25px; height: 25px; }

    /* --- Ajustes para compactar la sección de beneficios --- */
    .benefits-section {
        padding: 40px 15px;
    }
    .benefits-list-main li {
        font-size: 0.9rem; /* Texto de la lista más pequeño */
        margin-bottom: 12px;
        gap: 10px;
    }
    .benefits-list-main .checkmark-icon {
        width: 22px; /* Icono más pequeño */
        height: 22px;
        margin-top: 2px;
    }
    .cta-button-main {
        padding: 15px 30px; /* Botón más pequeño */
        font-size: 1rem;
    }
}


/* --- Custom Plan Section --- */
.custom-plan-section {
    padding: 40px 0;
}

.plan-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.plan-image {
    flex: 1;
}

.plan-image img {
    max-width: 350px;
}

.plan-text {
    flex: 1.2;
    text-align: center;
}

.plan-text h2 {
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.plan-text .subtitle {
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.plan-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.plan-text .stress-free {
    font-size: 1.3rem;
    font-weight: 700;
    color: red;
    font-style: italic;
    text-decoration: underline;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .plan-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}


/* --- Results Gallery Section (VERSIÓN FINAL CORREGIDA) --- */
.results-gallery-section {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 40px 20px;
}

.results-gallery-section .container {
    text-align: center;
}

.results-gallery-section .section-title {
    color: var(--primary-bg);
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 15px;
}

.results-gallery-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* El nuevo contenedor único para la galería */
.gallery-container {
    display: grid;
    /* Mobile-first: 2 columnas por defecto y un espacio reducido */
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; 
    max-width: 800px;
    margin: 0 auto;
}

.gallery-container img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* --- Ajuste para Escritorio --- */
@media (min-width: 769px) {
    .gallery-container {
        /* En pantallas grandes, cambiamos a 3 columnas y aumentamos el espacio */
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* --- 'Esto es para ti' Section --- */
.is-for-you-section {
    background-color: #232425;
    padding: 80px 20px;
}

.for-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title-highlight {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin: 0 auto 40px auto;
    display: inline-block;
}

.section-title-highlight span {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 8px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.for-you-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    text-align: left;
}

.for-you-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 25px;
}

.for-you-list .checkmark-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--white);
    margin-top: 5px;
}


/* HOW IT WORKS */
.how-it-works {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Estilo para el título principal "HOW IT WORKS" */
.how-it-works .main-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

/* Contenedor para cada uno de los puntos */
.how-it-works .feature-point {
    margin-bottom: 50px;
}

/* Contenedor para las imágenes de cada punto */
.how-it-works .image-gallery {
    margin: 0 auto;
}

/* Estilo para cada imagen dentro de la galería */
.how-it-works .image-gallery img {
    width: 50%;
    /* Cada imagen ocupa la mitad del contenedor */
    object-fit: cover;
    /* Asegura que la imagen cubra el espacio sin deformarse */
    border-radius: 8px;
    /* Bordes ligeramente redondeados */
}

/* Estilo para el título de cada punto (ej. #1: ...) */
.how-it-works .point-title {
    color: #000;
    /* Un color rojo similar al de la imagen */
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.how-it-works .point-title span {
    color: #E74C3C;
}

/* Estilo para los párrafos de descripción */
.how-it-works .point-description p {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 15px;
}

.content-list {
    /* Estilos generales del contenedor de la lista */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    max-width: 500px;
    background-color: #ffffff;
    /* Fondo blanco para la caja si se desea */
    padding: 20px;
    /* Espacio interno */
}

.content-list ul {
    /* Quita el padding por defecto del navegador para tener más control */
    padding-left: 20px;
    margin: 0;
}

.content-list li {
    /* Estilo de cada elemento de la lista */
    font-size: 1.1em;
    /* Tamaño de fuente similar al de la imagen */
    color: #333;
    /* Color de texto gris oscuro */
    line-height: 1.6;
    /* Espaciado entre líneas para mejor legibilidad */
    margin-bottom: 12px;
    /* Espacio entre los elementos de la lista */
    padding-left: 8px;
    /* Pequeño espacio entre la viñeta y el texto */
}

.content-list li:last-child {
    margin-bottom: 0;
    /* Elimina el margen del último elemento */
}

.content-list strong {
    /* Asegura que el texto en negrita tenga el peso correcto */
    font-weight: 700;
}



/* Contenedor principal de la sección de características */
.plan-features {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* --- Botón Principal (Call to Action) --- */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
    background-image: linear-gradient(to right, #e62e2e, #f56a3a);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Sección de Títulos --- */
.headline {
    margin-bottom: 60px;
}

.headline h2 {
    font-size: 1.5em;
    line-height: 0.8em;
    margin: 10px 0;
    color: #333;
    font-weight: 700;
}

.headline span {
    color: red;
}

/* --- Grid de Características (CORREGIDO Y OPTIMIZADO) --- */
.features-grid {
    display: grid;
    /* Mobile-first: 2 columnas por defecto para que nunca sea una sola */
    grid-template-columns: repeat(2, 1fr);
    /* Un espacio más reducido para móviles */
    gap: 25px; 
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Asegura que el texto esté centrado */
}

.feature-icon img {
    /* Tamaño reducido para móviles para que quepa mejor */
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
    line-height: 1.4; /* Mejora la legibilidad si el texto ocupa dos líneas */
}

/* --- Ajuste para Escritorio --- */
/* Se activa solo en pantallas más grandes que 768px */
@media (min-width: 768px) {
    .features-grid {
        /* Cambiamos a 3 columnas en desktop */
        grid-template-columns: repeat(3, 1fr);
        /* Volvemos al espacio original más grande */
        gap: 25px;
    }

    .feature-icon img {
        /* Restauramos el tamaño original del ícono en desktop */
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 1em; /* Un poco más grande en desktop */
    }
}

/* --- Contenedor Principal de la Sección (CORREGIDO) --- */
.plan-intro-section {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

/* --- Título Principal --- */
.plan-intro-section .intro-title {
    font-size: 1.8em; /* Tamaño base consistente */
    line-height: 1.5em; /* Corregido '1.5m' a '1.5em' para desktop */
    margin: 10px 0 30px 0; /* Aumentado el margen inferior para desktop */
    color: #333;
    font-weight: 700;
}

/* Clase para destacar texto en rojo */
.plan-intro-section .highlight-easy {
    color: red;
}

/* --- Párrafos de Descripción --- */
.plan-intro-section .intro-paragraphs p {
    font-size: 1.1em; /* Tamaño base consistente */
    line-height: 1.7; /* Más espaciado para mejor lectura en desktop */
    color: #555;
    margin-bottom: 20px;
}

.plan-intro-section .intro-paragraphs strong {
    color: #333;
}

/* --- Media Query para Responsividad en Móvil--- */
@media (max-width: 600px) {
    .plan-intro-section {
        /* Alineamos todo a la izquierda en móvil */
        text-align: left;
    }

    .plan-intro-section .intro-title {
        font-size: 1.6em; /* Un poco más pequeño para que no se rompa tanto */
        /* Hacemos el interlineado más compacto */
        line-height: 1.3; 
    }

    .plan-intro-section .intro-paragraphs p {
        font-size: 1em;
        /* Hacemos el interlineado más compacto */
        line-height: 1.5; 
        /* Reducimos el espacio entre párrafos */
        margin-bottom: 15px; 
    }
}

.offer-card-container {
    display: flex;
    flex-direction: column;
    /* Apila los elementos verticalmente */
    align-items: center;
    /* Centra los elementos horizontalmente */
}

.offer-card {
    margin: 0 auto;
    background-color: #2c2c2e;
    /* Gris oscuro de fondo */
    color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    /* Necesario para que la esquina del banner no se salga */
    box-sizing: border-box;
}

.best-results-banner {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #fdd835;
    /* Amarillo */
    color: #000;
    padding: 5px 40px;
    font-weight: bold;
    font-size: 0.9em;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.offer-header {
    text-align: center;
    margin-bottom: 20px;
}

.offer-header h2 {
    font-family: 'Oswald', sans-serif;
    margin: 0 auto;
    font-size: 1.6em;
    line-height: 1.2em;
}

.offer-header .reviews {
    margin-top: 8px;
    font-size: 1em;
    color: #fdd835;
    /* Amarillo para las estrellas */
}

.offer-card .subtitle {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 0.8em;
    line-height: 1.5;
}

.offer-card .features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    /* Verde para el check */
    font-size: 1.5em;
    font-weight: bold;
}

.offer-card .features-list li strong {
    display: block;
    /* Para que el texto de abajo se ponga en otra línea */
    color: #f0f0f0;
}

.offer-card .price-section {
    text-align: center;
    margin: 30px 0;
}

.offer-card .price-section .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2em;
    margin: 0;
}

.offer-card .price-section .new-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #58c4c4;
    /* Un color cian brillante para que resalte */
    margin: 5px 0;
}

.offer-card .price-section .new-price .total {
    font-size: 0.5em;
    font-weight: normal;
    color: #ffffff;
}

.offer-card .cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #f44336, #d32f2f);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    margin-bottom: 0;
}


.offer-card .cta-button:hover {
    transform: translateY(-3px);
}


.offer-card-container .intro-title {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    font-size: 1.5em;
    line-height: 1.5m;
    margin: 10px 0;
    color: #333;
    font-weight: 700;
    /* Espacio entre el título y los párrafos */
}

.offer-card-container .highlight-easy {
    color: red;
}

/* --- Contenedor de la Sección FAQ --- */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.faq-section .faq-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    color: #222;
    /* Color negro/gris oscuro */
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Contenedor de las preguntas para poner el borde superior */
.faq-container {
    border-top: 1px solid #e0e0e0;
}

/* Estilo para cada item del acordeón (la etiqueta <details>) */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

/* Estilo para la pregunta (la etiqueta <summary>) */
.faq-question {
    padding: 25px 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    /* Texto en negrita */
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Oculta el marcador de flecha por defecto */
}

.faq-question::-webkit-details-marker {
    display: none;
    /* Oculta el marcador en navegadores Webkit (Chrome, Safari) */
}

/* Creamos el ícono de flecha (chevron) */
.faq-question::after {
    content: '⌄';
    /* Flecha hacia abajo */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    color: #555;
    transition: transform 0.2s ease-in-out;
}

/* Cuando el acordeón está abierto, la flecha rota hacia arriba */
.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Estilo para el contenedor de la respuesta */
.faq-answer {
    padding: 0 5px 25px 5px;
    line-height: 1.7;
    font-size: 1em;
    color: #555;
}

/* --- Estilo para el Botón Final (Call To Action) --- */
.faq-cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    /* Ancho máximo para el botón */
    margin: 40px auto 0 auto;
    /* Espacio superior y centrado */
    padding: 20px;
    background: linear-gradient(to right, #e63d30, #f58a3a);
    /* Degradado rojo a naranja */
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* --- Estilos del Footer --- */
.site-footer {
    background-color: #1a1a1a;
    /* Un fondo negro/gris muy oscuro */
    /* Si tuvieras una imagen de patrón como la de VShred, la pondrías así: */
    /* background-image: url('path/to/your/pattern.png'); */
    padding: 50px 20px;
    /* Espaciado vertical y horizontal */
    text-align: center;
}

.site-footer .footer-logo img {
    max-width: 180px;
    /* Ajusta el tamaño de tu logo */
    margin-bottom: 20px;
    /* Espacio entre el logo y el texto de copyright */
}

.site-footer .copyright-text {
    color: #888;
    /* Un gris claro para el texto, para que no sea muy brillante */
    font-size: 0.9em;
    margin: 0;
}