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

html {
    font-size: 112%;
    overflow-x: hidden;
    scroll-padding-top: 48px;
}

html,
body {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/desktop_bg.png');
    background-image: image-set(url('img/desktop_bg.webp') type('image/webp'), url('img/desktop_bg.png') type('image/png'));
    background-size: cover;
    background-position: center;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .hero-bg {
        background-image: url('img/mobile_bg.png');
        background-image: image-set(url('img/mobile_bg.webp') type('image/webp'), url('img/mobile_bg.png') type('image/png'));
    }
}

/* ============== HEADER ============== */
.header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 3rem;
    background: transparent;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.logo {
    width: 100%;
    max-width: 200px;
    /* Aumentado de 150px */
    height: auto;
    display: block;
}

/* ============== HERO CONTAINER ============== */
.hero-container {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 48px;
    gap: 64px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* ============== CONTENT LEFT ============== */
.content-left {
    flex: 1;
    max-width: 1000px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: none;
}

.main-title {
    font-size: clamp(1.35rem, 1.83vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

/* ============== EVENT INFO ============== */
.event-info {
    margin-bottom: 16px;
}

/* Mobile: logo e date-box empilhados */
@media screen and (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.date-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.calendar-icon {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin-top: 2px;
}

.date-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.main-date {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.sub-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============== DESCRIPTION ============== */
.description {
    font-size: clamp(13px, 0.885vw, 17px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 750px;
}

.expert-mobile-container {
    display: none;
    /* Escondido por padrão */
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
    overflow: hidden;
}

.expert-mobile {
    width: 100%;
    display: block;
    height: auto;
}

.cta-button-link {
    text-decoration: none;
}

/* ============== CTA BUTTON ============== */
.cta-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c89968 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #ddb485 0%, #d4a574 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* ============== CONTENT RIGHT ============== */
.content-right {
    flex: 1;
    display: none;
}

/* ============== RESPONSIVE DESIGN ============== */
@media screen and (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
        padding: 0 2rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .logo-container .logo {
        max-width: 250px;
        /* Aumentado ainda mais no mobile */
    }

    .hero-container {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
        /* Centralizar Hero */
    }

    .content-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Alinha botão e itens ao centro */
    }

    .expert-mobile-container {
        display: block;
        /* Aparece no mobile */
    }

    .main-title {
        font-size: 2.0rem;
        /* Reduzido de 2.5rem (~8px a menos) para melhor equilíbrio */
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .main-title br,
    .description br {
        display: none;
    }

    /* Remove quebras de linha manuais no mobile */

    .date-box {
        justify-content: center;
    }

    .main-date {
        font-size: 0.9rem;
    }

    .sub-date {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }

    .header {
        padding: 1rem;
    }

    .logo {
        max-width: 140px;
    }

    .hero-container {
        padding: 0 1rem 1rem;
    }

    .content-left {
        max-width: 100%;
    }

    .main-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .badge {
        margin-bottom: 0.75rem;
    }

    .event-info {
        margin-bottom: 1rem;
    }

    .date-box {
        padding: 0.5rem;
    }

    .calendar-icon {
        width: 20px;
        height: 20px;
    }

    .main-date {
        font-size: 0.8rem;
    }

    .sub-date {
        font-size: 0.7rem;
    }

    .description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .arrow-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============== TESTIMONIALS SECTION ============== */
.testimonials {
    background: #ffffff;
    padding: 100px 0;
    color: #03152d;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #03152d;
    max-width: 900px;
    margin: 0 auto 24px;
}

.testimonials-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #c89968;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonials-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.final-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.testimonials-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Rederizing CTA in white section */
.testimonials .cta-button {
    box-shadow: 0 15px 35px rgba(200, 153, 104, 0.4);
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials .container {
        padding: 0 20px;
    }

    .testimonials-grid,
    .final-testimonials {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 18px;
    }
}

/* ============== LEARNING SECTION ============== */
.learning {
    background: #03152d;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.learning .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.learning-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-pill {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.learning-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.learning-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.learning-card {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 24px;
    /* Mais arredondado conforme foto */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
}

.learning-card:hover {
    background: radial-gradient(circle at top right, rgba(200, 153, 104, 0.15) 0%, rgba(255, 255, 255, 0.02) 70%);
    border-color: rgba(200, 153, 104, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    width: 36px;
    height: 36px;
    background: #5e4d3b;
    /* Tom de marrom/ouro mais sóbrio */
    border-radius: 8px;
    margin-bottom: 40px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.card-text strong {
    font-weight: 700;
    color: #ffffff;
}

/* ============== PILLARS ============== */
.pillars-section {
    text-align: center;
    margin-top: 40px;
}

.pillars-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 2.5em;
    /* Ajustado para comportar as 2 linhas confortavelmente */
}

.pillar-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.learning-cta {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

@media screen and (max-width: 1024px) {
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .learning-header {
        text-align: center;
    }

    .learning-card {
        align-items: center;
        /* Centralizar ícone e texto */
        text-align: center;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

    .pillars-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .learning-title {
        font-size: 24px;

        br {
            display: none;
        }
    }

    .pillars-title {
        font-size: 28px;
    }

    .pillar-name {
        font-size: 20px;
        min-height: auto;
    }
}

/* ============== AUDIENCE SECTION ============== */
.audience {
    background: #03152d;
    padding: 80px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Add padding for mobile/desktop content protection */
}

.audience-left {
    flex: 0 0 40%;
    /* Um pouco mais largo para o texto respira */
}

.audience-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.audience-description {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.audience-subtext {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.audience-right {
    flex: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audience-card {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    min-height: 220px;
}

.audience-card:hover {
    background: radial-gradient(circle at top right, rgba(200, 153, 104, 0.15) 0%, rgba(255, 255, 255, 0.02) 70%);
    border-color: rgba(200, 153, 104, 0.3);
    transform: translateY(-5px);
}

.audience-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.audience-card .card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

@media screen and (max-width: 1200px) {
    .audience-container {
        gap: 40px;
    }

    .audience-title {
        font-size: 36px;
    }

    .audience-description,
    .audience-subtext {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .audience-container {
        flex-direction: column;
        text-align: center;
        /* Centralizar textos */
    }

    .audience-left {
        width: 100%;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: auto;
    }
}

/* ============== MENTORS SECTION ============== */
.mentors {
    background: #03152d;
    padding: 100px 0;
    color: #ffffff;
}

.mentors-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
}

.mentors-title .gold {
    color: #c89968;
}

.mentors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.mentor-photo {
    flex: 0 1 auto;
    /* Tamanho original */
    max-width: 280px;
    /* Limite para manter o grid harmonioso */
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 600px) {
    .mentor-photo {
        max-width: 100%;
    }
}

/* ============== PRICING SECTION ============== */
.pricing {
    background: #ffffff;
    padding: 100px 0;
    color: #03152d;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-title .gold {
    color: #c89968;
}

.pricing-subtitle {
    font-size: 18px;
    color: rgba(3, 21, 45, 0.7);
    font-weight: 400;
}

.tickets-wrapper {
    max-width: 900px; /* Reduced from 1000px for more side margins */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased from 30px for more space between cards */
    padding: 0 40px; /* Added padding for "2 fingers" look */
}

.ticket-card {
    display: flex;
    padding: 50px 60px;
    border-radius: 20px;
    /* Reduzi um pouco de 24px */
    min-height: 300px;
    position: relative;
    color: #ffffff;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ticket-card.full {
    background: #111111;
}

.ticket-card.vip {
    background: linear-gradient(135deg, #c89968 0%, #a17b4f 100%);
}

.ticket-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ticket-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    font-weight: 300;
}

.ticket-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.benefits-button {
    background: #ffffff;
    color: #a17b4f;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    /* Removido o arredondado (pílula) para um visual mais reto conforme pedido */
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vip .benefits-button {
    color: #a17b4f;
    background: #ffffff;
    border: none;
}

.vip .benefits-button:hover {
    background: #f5f0eb;
}

.ticket-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.ticket-actions .benefits-button,
.ticket-actions .checkout-button {
    flex-shrink: 0;
}

.checkout-button {
    background: #ffffff;
    color: #03152d;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.vip .checkout-button {
    background: #111111;
    color: #ffffff;
}

.checkout-button:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.vip .checkout-button:hover {
    background: #222222;
}

.benefits-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ticket-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    /* Aumentado para comportar o preço maior */
}

.price-original {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    font-weight: 400;
}

.price-current {
    font-size: 64px;
    /* Preço aumentado conforme solicitado */
    font-weight: 800;
    letter-spacing: -2px;
}

.vip-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 900px) {
    .ticket-card {
        flex-direction: column;
        padding: 40px 30px;
        /* Reduzido padding lateral interno */
        gap: 20px;
        margin: 0 15px;
        /* Adicionado margem externa para não colar na tela */
        border-radius: 12px;
        /* Reduzido arredondamento no mobile */
    }

    .ticket-pricing {
        text-align: left;
        min-width: auto;
    }

    .price-current {
        font-size: 40px;
    }

    .ticket-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-button,
    .benefits-button {
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

/* ============== GALLERY SECTION ============== */
.gallery {
    background: #ffffff;
    padding: 60px 0;
    /* Reduzido de 80px */
    text-align: center;
}

.gallery-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #a17b4f;
    margin-bottom: 12px;
    font-weight: 500;
}

.gallery-title {
    font-size: 32px;
    /* Reduzido de 36px */
    font-weight: 700;
    color: #03152d;
    margin-bottom: 40px;
}

.gallery-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    gap: 15px;
    width: max-content;
    /* Necessário para o loop */
    animation: scrollInfinite 30s linear infinite;
    padding-bottom: 30px;
}

.gallery-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 7.5px));
        /* Metade da largura + metade do gap */
    }
}

.gallery-item {
    flex: 0 0 500px;
    /* Aumentado de 400px */
    height: 350px;
    /* Aumentado de 280px */
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: none;
    /* Removido dots para animação fluida infinita */
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #03152d;
}

/* ============== FOOTER ============== */
.footer {
    background: #03152d;
    padding: 60px 0 30px;
    /* Reduzido de 80px 0 40px */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    /* Centralizado */
    align-items: center;
    gap: 100px;
    /* Reduzido para ficar mais 'coladinho' */
    margin: 0 auto 60px;
    max-width: 1000px;
}

.footer-logo {
    max-width: 220px;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-align: center;
    /* Centralizado */
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    /* Centralizado */
}

.social-link img {
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .testimonials-header {
        text-align: center;
    }

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

    .social-label,
    .social-links {
        text-align: center;
        justify-content: center;
    }

    .gallery-item {
        flex: 0 0 350px;
        /* Aumentado no mobile também */
        height: 240px;
    }
}

/* ============== BENEFITS LIST ============== */
.benefits-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
}

.benefits-list.open {
    max-height: 400px;
}

.benefits-list ul {
    list-style: none;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #c89968;
}

.benefits-arrow {
    transition: transform 0.3s ease;
}

.benefits-arrow.open {
    transform: rotate(180deg);
}

/* ============== VER MAIS TESTIMONIALS ============== */
.ver-mais-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ver-mais-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(3, 21, 45, 0.25);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #03152d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.ver-mais-btn svg {
    transition: transform 0.3s ease;
}

.ver-mais-btn.open svg {
    transform: rotate(180deg);
}

.ver-mais-btn:hover {
    background: rgba(3, 21, 45, 0.05);
}

.testimonials-more {
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.2s ease;
}

.testimonials-more.open {
    max-height: 6000px;
}

.testimonials-more .testimonials-grid {
    margin-top: 20px;
}

/* Stagger for grid items */
.testimonials-grid img:nth-child(n+1) {
    transition-delay: calc(0.1s * var(--item-index, 1));
}

/* ============== SCROLL ANIMATIONS ============== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============== LEAD FORM ============== */
.mrcc-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 440px;
    margin-top: 1.5rem;
}

.mrcc-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.mrcc-form-wrapper .mrcc-form {
    max-width: 540px;
    width: 100%;
    margin-top: 0;
}

.mrcc-form-group {
    position: relative;
}

.mrcc-input,
.mrcc-select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 165, 90, 0.35);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.mrcc-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.mrcc-input:focus,
.mrcc-select:focus {
    outline: none;
    border-color: #C5A55A;
    background: rgba(255, 255, 255, 0.09);
}

.mrcc-select {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
}

.mrcc-select option {
    background: #111;
    color: #fff;
}

.mrcc-input.error,
.mrcc-select.error {
    border-color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.78rem;
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

.mrcc-form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* intl-tel-input dark theme */
.mrcc-form .iti {
    width: 100%;
}

.mrcc-form .iti__flag-container {
    border-right: 1px solid rgba(197, 165, 90, 0.3);
}

.mrcc-form .iti__selected-flag {
    background: transparent !important;
}

.mrcc-form .iti__country-list {
    background: #1a1a1a;
    border: 1px solid rgba(197, 165, 90, 0.3);
    color: #fff;
}

.mrcc-form .iti__country.iti__highlight,
.mrcc-form .iti__country:hover {
    background: rgba(197, 165, 90, 0.15);
}

.mrcc-form .iti__dial-code {
    color: rgba(255, 255, 255, 0.6);
}

#submitBtn.loading {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}
/* ============== PRICING LAYOUT (TICKETS + FORM SIDE BY SIDE) ============== */
.pricing-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.tickets-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* START card: gold gradient */
.ticket-card.ticket-start {
    background: linear-gradient(135deg, #c89968 0%, #a17b4f 100%);
}

/* VIP card: dark */
.ticket-card.ticket-vip {
    background: #111111;
    flex-direction: column;
}

.ticket-card.ticket-vip .ticket-main {
    width: 100%;
}

.ticket-card.ticket-vip .ticket-pricing {
    text-align: left;
}

/* Benefits list (hidden by default, shown on toggle) */
.ticket-benefits-list {
    display: none;
    margin: 12px 0 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
}

.ticket-benefits-list.open {
    display: block;
}

/* Adjust form wrapper to fill its column */
.pricing-layout .mrcc-form-wrapper {
    flex: 1;
    min-width: 0;
    background: #0a1628;
    border-radius: 20px;
    padding: 40px;
}

/* Adjust ticket-pricing on START card (stays right) */
.ticket-card.ticket-start .ticket-pricing {
    min-width: 200px;
}

/* Responsive: stack on small screens */
@media screen and (max-width: 960px) {
    .pricing-layout {
        flex-direction: column;
    }

    .pricing-layout .mrcc-form-wrapper {
        padding: 30px 20px;
    }
}

/* ============== TICKET FULL & VIP-GOLD CARDS ============== */

/* FULL: fundo preto */
.ticket-card.ticket-full {
    background: #032670;
}

/* FULL: botão "Ver benefícios" - fundo branco, letra preta */
.benefits-button--full {
    background: #ffffff !important;
    color: #111111 !important;
}

.benefits-button--full:hover {
    background: #f0f0f0 !important;
}

/* FULL: botão "Garantir minha vaga" - fundo branco, letra preta */
.checkout-button--full {
    background: #ffffff;
    color: #111111 !important;
    border: none;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.checkout-button--full:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* VIP-GOLD: fundo dourado */
.ticket-card.ticket-vip-gold {
    background: linear-gradient(135deg, #c89968 0%, #a17b4f 100%);
}

.ticket-card.ticket-vip-gold .ticket-pricing {
    text-align: right;
}

/* VIP-GOLD: botão "Ver benefícios" - fundo preto, letra branca */
.benefits-button--vip {
    background: #111111 !important;
    color: #ffffff !important;
    border: none !important;
}

.benefits-button--vip:hover {
    background: #222222 !important;
}

/* VIP-GOLD: botão "Garantir minha vaga" - fundo preto, letra branca */
.checkout-button--vip {
    background: #111111;
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.checkout-button--vip:hover {
    background: #222222;
    transform: scale(1.05);
}

/* Bloco "Comprar em grupo" - empilhado abaixo do botão principal */
.group-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
}

.group-button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: transparent;
}

.group-button--full {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.group-button--full:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: scale(1.05);
}

.group-button--vip {
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.55);
}

.group-button--vip:hover {
    background: rgba(17, 17, 17, 0.1);
    border-color: #111111;
    transform: scale(1.05);
}

.group-discount {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(255, 184, 77, 0.18);
    color: #ffb84d;
    text-transform: uppercase;
}

.ticket-vip-gold .group-discount {
    background: rgba(17, 17, 17, 0.85);
    color: #ffd166;
}

@media screen and (max-width: 900px) {
    .group-actions {
        align-items: stretch;
    }
    .group-button {
        width: 100%;
        text-align: center;
    }
    .group-discount {
        align-self: center;
    }
}

/* ============== LOCATION SECTION ============== */
.location {
    padding: 80px 0 120px;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 280px, #000c1d 450px, #000c1d 100%);
    color: #ffffff;
}

.location-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.location-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #001f3f; /* Azul marinho */
}

.location-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #555555;
}

.location-icon {
    width: 24px;
    height: 24px;
    color: #c89968; /* Gold color for icon */
}

.location-banner-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .tickets-wrapper {
        padding: 0 15px;
        gap: 20px;
    }
    
    .ticket-card {
        padding: 30px 20px;
    }

    .price-current {
        font-size: 36px; /* Slightly smaller for mobile */
    }
}

.location-banner {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.6);
}

.location-grid {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 10;
}

.location-card {
    background: rgba(13, 31, 56, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 90, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.location-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #c89968;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.location-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.location-list {
    padding-left: 20px;
    margin: 0;
}

.location-list li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.location-map-container {
    margin-top: 80px;
    text-align: center;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: scale(1.02);
}

.location-footer {
    display: flex;
    justify-content: center;
}

.map-link {
    color: #c89968;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #c89968;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Responsive adjustments for Location */
@media screen and (max-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        bottom: -150px;
    }
    
    .location-banner-wrapper {
        margin-bottom: 180px;
    }
}

@media screen and (max-width: 600px) {
    .location-grid {
        grid-template-columns: 1fr;
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: -50px;
    }
    
    .location-banner-wrapper {
        margin-bottom: 40px;
    }
    
    .location-banner {
        height: 300px;
    }
    
    .location-card {
        padding: 20px;
    }
}

/* ============== URGENCY BANNER ============== */
.urgency-banner {
    background: linear-gradient(90deg, #4d0000 0%, #8b0000 50%, #4d0000 100%);
    border-bottom: 1px solid rgba(255, 80, 80, 0.4);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

#banner-countdown,
#banner-rot,
.banner-sep {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.banner-sep {
    color: rgba(255, 255, 255, 0.4);
}

#banner-countdown {
    font-weight: 700;
    color: #c89968;
}

@media screen and (max-width: 480px) {
    .urgency-banner {
        gap: 10px;
        padding: 8px 15px;
    }
    #banner-countdown,
    #banner-rot,
    .banner-sep {
        font-size: 0.82rem;
    }
}

/* ============== EXIT POPUP ============== */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(3, 21, 45, 0.78);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 200ms ease;
}

.exit-popup.is-open {
    display: flex;
    opacity: 1;
}

.exit-popup-card {
    position: relative;
    background: #03152d;
    border: 1px solid rgba(200, 153, 104, 0.4);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    max-width: 440px;
    width: calc(100% - 2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    transform: translateY(20px);
    transition: transform 300ms ease-out;
    font-family: 'Outfit', sans-serif;
}

.exit-popup.is-open .exit-popup-card {
    transform: translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    transition: background 200ms ease;
    padding: 0;
}

.exit-popup-close:hover,
.exit-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.exit-popup-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.exit-popup-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.75rem;
}

.exit-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #d4a574 0%, #c89968 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(200, 153, 104, 0.25);
}

.exit-popup-cta:hover {
    background: linear-gradient(135deg, #ddb485 0%, #d4a574 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 153, 104, 0.35);
}

.exit-popup-cta:active {
    transform: translateY(0);
}

@media screen and (max-width: 480px) {
    .exit-popup-card {
        padding: 2rem 1.25rem 1.5rem;
    }
    .exit-popup-title {
        font-size: 1.25rem;
    }
    .exit-popup-text {
        font-size: 0.95rem;
    }
}
