body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* === HEADER THANKYOU === */
.thankyou-header {
    background: #0E3A2F;
    padding: 20px 0;
    position: relative;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.logo-container img {
    height: 46px;
    width: auto;
}

.header-tagline {
    color: #00CB7B;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}



/* === RESPONSIVE THANKYOU === */
@media (max-width: 768px) {
    .header-container,
    .footer-container {
        padding: 0 20px;
    }
 
    .header-content {
        flex-direction: column;
        gap: 8px;
    }

    .header-tagline {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    section.banner {
        align-items: flex-start;
    }

    section.banner .text {
        margin-top: 90px;
        padding: 0 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container,
    .footer-container {
        padding: 0 15px;
    }
    
    .thankyou-header {
        padding: 15px 0;
    }
    
    .thankyou-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
}

/* === FOOTER THANKYOU === */
.thankyou-footer {
    background: #0E3A2F;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-logo img {
    height: 46px;
    width: auto;
}

.footer-tagline {
    color: #00CB7B;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}



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

.copyright p {
    color: #FFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #FFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    }

.legal-links a:hover {
    opacity: 1;
    color: #00CB7B;
}

/* Main */
main {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.banner .text {
    text-align: center;
    padding: 0 20px;
}

section.banner .text h1 {
    color: var(--primario-blanco, #FFF);
    text-align: center;
    
    /* Titulos/Bold 30px */
    font-family: "Open Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.2px;
}

section.banner .text p {
    color: var(--primario-blanco, #FFF);
    text-align: center;
    
    /* Text/Bold 13px */
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

section.banner .text .btn-link {
    margin-top: 20px;
    color: var(--primario-blanco, #FFF);
    text-align: center;
    
    /* Text/Regular 12px - subrayado */
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/*section.banner .text .btn-link:hover {
    background: #A0002A;
}*/

@media (max-width: 768px) {
    section.banner .text h1 {
        font-size: 36px;
    }

    section.banner .text p {
        font-size: 20px;
    }

    section.banner .text .btn-link {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    section.banner{
        align-items: flex-start;
    }
    section.banner .text h1 {
        font-size: 30px;
        margin: 0 0 10px 0;
    }

    section.banner .text p {
        color: var(--primario-blanco, #FFF);
        text-align: center;
        
        /* Text/Bold 13px */
        font-family: "Open Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    section.banner .text .btn-link {
        color: var(--primario-blanco, #FFF);
        text-align: center;
        
        /* Text/Regular 12px - subrayado */
        font-family: "Open Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}

