/* =========================================================================
   ESTILOS RESPONSIVE - PÁGINA DE GRACIAS
   ========================================================================== */

@media (max-width: 992px) {
    :root {
        --font-h1: 3rem;
        --font-body-large: 1rem;
    }

    .hero-section {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-h1: 2rem;
        --font-body-large: 0.95rem;
    }

    .hero-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .hero-content {
        gap: var(--space-xl);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .bg-shape {
        filter: blur(60px);
    }

    .bg-shape-1,
    .bg-shape-2,
    .bg-shape-3,
    .bg-shape-4 {
        width: 300px;
        height: 300px;
    }

    .success-icon {
        font-size: 60px;
    }

    .access-info-box {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }

    .access-text ul li {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --font-h1: 1.6rem;
        --font-body-large: 0.9rem;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-content {
        gap: var(--space-lg);
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .bg-shape {
        filter: blur(50px);
        opacity: 0.3;
    }

    .bg-shape-1,
    .bg-shape-2,
    .bg-shape-3,
    .bg-shape-4 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .hero-content {
        gap: var(--space-lg);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }
}
