/* ===============================
   PÁGINA DE AGRADECIMENTO — RADAR
   =============================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(145deg, #070d1f 0%, #0c1a45 60%, #0f1e52 100%);
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thank-you-container {
    max-width: 560px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Seção 1 — Hero */
.ty-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

/* Ícone de check */
.check-icon {
    width: 72px;
    height: 72px;
    background: rgba(8, 63, 207, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(8, 63, 207, 0.3);
    margin-top: 1rem;
}

.check-icon svg circle {
    fill: transparent;
}

.check-icon svg path {
    stroke: #ffffff;
}

/* Logos */
.ty-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ty-logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

/* Título */
.ty-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-top: -0.1rem;
    margin-bottom: -0.35rem;
}

.ty-congrats {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FC7D55 0%, #B073FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-top: -0.1rem;
    margin-bottom: -0.35rem;
}

.ty-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 520px;
    text-align: center;
    margin-top: -0.3rem;
    margin-bottom: -0.3rem;
}

.ty-subtitle strong {
    color: #ffffff;
}

/* Card do evento */
.event-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    display: flex;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    backdrop-filter: blur(8px);
}

.event-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(8, 63, 207, 0.5);
    box-shadow: 0 8px 32px rgba(8, 63, 207, 0.25);
}

.event-date-badge {
    flex-shrink: 0;
    width: 60px;
    height: 68px;
    background: #083FCF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.event-month {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    line-height: 1;
}

.event-day {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.event-info {
    flex: 1;
    min-width: 0;
}

.event-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FC7D55;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.event-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.event-detail-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.event-detail-item svg path,
.event-detail-item svg circle,
.event-detail-item svg rect {
    stroke: rgba(255, 255, 255, 0.6);
}

/* Botão agenda */
.btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FC7D55 0%, #B073FF 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 2rem;
    height: 56px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(252, 125, 85, 0.35);
}

.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 125, 85, 0.45);
}

/* Link da live YouTube */
.yt-link-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.yt-link-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: -0.75rem;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 1.75rem;
    height: 50px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
}

.btn-youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.yt-link-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    max-width: 400px;
    line-height: 1.6;
    text-align: center;
    margin-top: -0.24rem;
    margin-bottom: -0.24rem;
}

/* Lembrete final */
.ty-reminder {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 380px;
    line-height: 1.6;
    margin-top: -0.255rem;
    margin-bottom: -0.255rem;
}

/* Responsivo */
@media (max-width: 480px) {
    .ty-title {
        font-size: 1.75rem;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .event-details {
        align-items: center;
    }

    .btn-calendar {
        width: 100%;
        justify-content: center;
    }
}
