﻿/* 1. VariÃ¡veis Root */
:root {
    --purple-accent: #AF1BB3;
    --purple-dark: #771969;
    --orange: #FE7222;
    --bg-dark: #0E0412;
    --border-light: #E3C9B3;
    --color-white: #fff;
    --gradient-main: linear-gradient(90deg, #FE7222 0%, #AF1BB3 100%);
    --text-muted: #6A6A6A;
    --border-color: #2a222d;
}

/* 2. Reset / Base */
body {
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 3. Tipografia e Utilidades */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-main {
    background: var(--gradient-main);
}

.bg-orange {
    background-color: var(--orange);
}

/* 4. Componentes - Badges e BotÃµes */
.badge-custom {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-main {
    display: inline-block;
    background: var(--gradient-main);
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(175, 27, 179, 0.3);
}

.btn-main:hover {
    opacity: 0.9;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* 5. SeÃ§Ã£o Esquerda (Hero) */
.hero-section {
    padding: 4rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.1;
    margin: 1.5rem 0;
}

/* Social Proof Pill */
.social-proof {
    background-color: var(--color-white);
    color: #333;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.avatars-group {
    display: flex;
    margin-right: 15px;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid var(--color-white);
    margin-left: -10px;
    position: relative;
}

.avatar-circle:first-child {
    margin-left: 0;
}

/* Features Box */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.feature-item {
    line-height: 1;
    font-weight: 500;
    border: 2px solid #6A6A6A;
    border-radius: 50px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #6A6A6A;
    text-transform: uppercase;
}

.feature-item svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #6A6A6A;
    stroke-width: 1.5;
}

/* Message & Video Cards */
.bottom-cards-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.message-card {
    border: 2px solid #6A6A6A;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-card h4 {
    font-size: 15px;
    font-weight: 300;
    margin: 10px 0 5px 0;
}

.message-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-outline-custom {
    border: 2px solid #6A6A6A;
    color: #6A6A6A;
    background: transparent;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.video-placeholder {
    background-color: var(--orange);
    border-radius: 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 140px;
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 6. SeÃ§Ã£o Direita */
.kv-placeholder {
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

/* Form Bar */
.form-bar {
    background-color: var(--orange);
    padding: 2rem 3rem;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.form-check a {
    color: #fe7222;
}

.form-bar .flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 0.8rem;
    line-height: 1.2;
    opacity: 0.9;
}

.custom-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    color: var(--color-white);
    padding: 10px 20px;
    width: 100%;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.custom-input:focus {
    outline: none;
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-submit-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit-circle:hover {
    background: var(--color-white);
    color: var(--orange);
}

/* Events Section */
.events-section {
    padding: 50px 30px 0 0;
    background-color: var(--bg-dark);
}

/* Event Card Gradient Border */
.event-card-main {
    position: relative;
    background: #0E0412;
    border-radius: 16px;
    padding: 25px;
    z-index: 1;
    min-width: 240px;
}

.event-card-main::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: solid 2px #AF1BB3;
    z-index: -1;

}

.event-label {
    font-size: 13px;
    color: #6A6A6A;
    text-transform: uppercase;
}

.event-date {
    font-size: 26px;
    font-weight: 500;
    margin: 5px 0 15px 0;
}

.btn-hibrido {
    border: 1px solid var(--border-color);
    background: transparent;
    color: #ccc;
    border-radius: 50px;
    font-size: 0.6rem;
    padding: 4px 12px;
    letter-spacing: 1px;
}

/* Progress Bar */
.progress-wrapper {
    margin-top: 25px;
}

.progress-bar-bg {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    position: relative;
    margin-bottom: 10px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: var(--gradient-main);
    border-radius: 2px;
}

.progress-text {
    font-size: 0.7rem;
    text-align: center;
    color: #aaa;
}

/* Swiper and Other Dates */
.swiper-nav-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #444;
    color: #6A6A6A;
    transition: all 0.3s;
    background: transparent;
    padding: 0;
}

.swiper-nav-btn:hover,
.swiper-nav-btn:not(.swiper-button-disabled) {
    border-color: var(--orange);
    color: var(--orange);
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #444 !important;
    color: #6A6A6A !important;
}

.pill-hibrido {
    border: 1px solid #444;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #6A6A6A;
    letter-spacing: 0.5px;
    background: transparent;
}

.circle-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A6A6A;
}

.pill-hibrido.active {
    border-color: var(--orange);
    color: var(--orange);
}

.circle-arrow-btn.active {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-orange-small {
    background: var(--orange);
    color: var(--color-white);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
}

.btn-orange-small:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* SeÃ§Ã£o de Aprendizado (Nova) */
.learning-section {
    padding: 6rem 0 3rem;
    background-color: var(--bg-dark);
    color: var(--color-white);
}

.learning-subtitle {
    color: #6A6A6A;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.learning-title {
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto 2rem auto;
    line-height: 1.3;
}

.learning-card {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    background: transparent;
}

.learning-card:hover {
    border-color: var(--purple-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(175, 27, 179, 0.1);
}

.learning-card-icon {
    margin-bottom: 20px;
}

.learning-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px;
    text-transform: uppercase;
}

.learning-card p {
    font-size: 0.8rem;
    color: #6A6A6A;
    line-height: 1.6;
    margin: 0;
}

/* ====== SEÃ‡ÃƒO DE VÃDEO ====== */
.video-section {
    padding: 2rem 0 2rem 0;
    background-color: var(--bg-dark);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* ProporÃ§Ã£o 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 15px 40px rgba(175, 27, 179, 0.15);
    /* Sombra roxa sutil */
    background-color: var(--purple-accent);
    /* Fundo roxo de fallback */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* ====== SEÃ‡ÃƒO PARA QUEM Ã‰ ====== */
.for-who-section {
    padding: 5rem 0 6rem 0;
    background-color: var(--bg-dark);
    color: var(--color-white);
}

.for-who-subtitle {
    color: #6A6A6A;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.for-who-title {
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.3;
}

.for-who-card {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    background: transparent;
    transition: border-color 0.3s ease;
}

.for-who-card:hover {
    border-color: #555;
}

.for-who-card-icon {
    margin-bottom: 20px;
}

.for-who-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.for-who-card p {
    font-size: 0.8rem;
    color: #6A6A6A;
    line-height: 1.6;
    margin: 0;
}

.features-centered-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 4rem auto 0;
    max-width: 800px;
}

.feature-pill-dark {
    border: 1px solid #333;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.feature-pill-dark:hover {
    border-color: #555;
    color: var(--color-white);
}

.feature-pill-dark svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #6A6A6A;
    stroke-width: 1.5;
}

/* ====== SEÃ‡ÃƒO FINAL CTA & KV ====== */
.bottom-cta-section {
    background-color: var(--bg-dark);
    position: relative;
}

.bottom-form-floating {
    background-color: var(--orange);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 10;
    margin: 0 1.5rem;
    margin-bottom: -60px;
    /* Faz sobrepor a Ã¡rea KV abaixo */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bottom-form-floating .text-lg-start {
    text-align: left !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-form-floating .btn-main {
    background: #ffffff;
    color: var(--bg-dark);
}

@media (min-width: 1200px) {
    .bottom-form-floating {
        max-width: 1100px;
        margin: 0 auto;
        margin-bottom: -60px;
    }
}

.bottom-kv-area {
    position: relative;
    width: 100%;
    min-height: 32vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    background-image: url("../imgs/kv.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.bottom-kv-area .kv-text-placeholder {
    position: relative;
    z-index: 2;
}

/* ====== RODAPÃ‰ (FOOTER) ====== */
.site-footer {
    background-color: var(--bg-dark);
    padding: 5rem 0 9rem 0;
    /* Padding inferior generoso devido Ã  barra flutuante */
    border-top: 1px solid #1a141e;
    position: relative;
    z-index: 5;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--orange) !important;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #110c14;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--purple-accent);
    color: white;
    border-color: var(--purple-accent);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: #b6b6b6;
    margin: 2.5rem 0;
}

/* SeÃ§Ã£o de Galeria (Carrossel Centrado) */
.gallery-section {
    padding: 2rem 0 6rem 0;
    background-color: var(--bg-dark);
    overflow: hidden;
    /* Evita scroll horizontal na pÃ¡gina */
}

.gallerySwiper {
    width: 100%;
    padding: 2rem 0;
    overflow: visible;
    /* Permite que os slides laterais vazem se necessÃ¡rio, mas o container pai esconde o scroll */
}

.gallerySwiper .swiper-slide {
    width: 60%;
    max-width: 800px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: scale(0.85);
    opacity: 0.5;
}

.gallerySwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.gallery-placeholder {
    background-color: #d9d9d9;
    border-radius: 16px;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A6A6A;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* SeÃ§Ã£o Countdown */
.countdown-section-bg {
    background: linear-gradient(to bottom, var(--orange) 50%, var(--bg-dark) 50%);
    padding: 5rem 0;
}

.countdown-card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1050px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.countdown-top {
    background-color: #B11DB2;
    /* Tom de roxo especÃ­fico da imagem */
    padding: 35px 40px;
    color: white;
}

.next-event-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-block;
}

.next-event-box .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.next-event-box h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.timer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
}

.timer-number {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pill-outline-white {
    border: 1px solid white;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.pill-outline-white:hover {
    background: white;
    color: #B11DB2;
}

.circle-btn-white {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.circle-btn-white:hover {
    background: white;
    color: #B11DB2;
}

.countdown-bottom {
    background-color: #161118;
    padding: 50px 40px;
    position: relative;
}

.countdown-desc {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

.host-info-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.host-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.host-details {
    display: flex;
    flex-direction: column;
}

.host-name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2px;
}

.host-badge {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.loc-text {
    font-size: 0.95rem;
    color: #999;
}

.btn-map-outline {
    border: 1px solid #444;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-map-outline:hover {
    border-color: white;
    color: white;
}

/* ====== SEÃ‡ÃƒO CALENDÃRIO ====== */
.calendar-section {
    padding: 3rem 0 5rem;
    background-color: var(--bg-dark);
}

.calendar-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calendar-subtitle {
    font-size: 0.75rem;
    color: #6A6A6A;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.calendar-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

/* Estrutura do Card/Checkbox */
.event-card-wrapper {
    display: block;
    cursor: pointer;
    position: relative;
    height: 100%;
    margin: 0;
}

/* Esconde o checkbox real */
.event-checkbox {
    display: none;
}

.calendar-card {
    background-color: #110c14;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.calendar-card:hover {
    border-color: #555;
    transform: translateY(-3px);
}

.card-top-area {
    height: 160px;
    background-color: #d9d9d9;
    /* Cor base placeholder */
    position: relative;
    transition: background-color 0.3s ease;
}

.card-bottom-area {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-event-title {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-white);
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-proximo {
    position: absolute;
    top: 15px;
    left: 15px;
    border: 1px solid white;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* --- LÃ“GICA DE ESTADOS VISUAIS (CSS) --- */

/* 1. Estado Selecionado (Checkbox Checked) */
.event-checkbox:checked+.calendar-card {
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(254, 114, 34, 0.15);
}

.event-checkbox:checked+.calendar-card .card-top-area {
    background-color: var(--purple-accent);
}

.event-checkbox:checked+.calendar-card .pill-hibrido {
    border-color: var(--orange);
    color: var(--orange);
}

.event-checkbox:checked+.calendar-card .circle-arrow-btn {
    border-color: var(--orange);
    color: var(--orange);
}

/* 2. Estado Evento Passado */
.event-checkbox:disabled+.calendar-card {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #222;
}

.event-checkbox:disabled+.calendar-card:hover {
    transform: none;
}

.event-checkbox:disabled+.calendar-card .card-top-area {
    background-color: #2a2a2a;
}

.event-checkbox:disabled+.calendar-card .card-event-title,
.event-checkbox:disabled+.calendar-card .card-date {
    color: #6A6A6A;
}

.msg-passado {
    font-size: 0.65rem;
    color: #6A6A6A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Barra flutuante de inscriÃ§Ã£o */
.sticky-register-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a141e;
    border-top: 1px solid var(--purple-dark);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-register-bar.show {
    transform: translateY(0);
}

/* Modal Customization */
.modal-content.dark-theme {
    background-color: #1a141e;
    color: white;
    border: 1px solid #333;
}

.modal-header {
    border-bottom-color: #333;
}

.modal-footer {
    border-top-color: #333;
}

.modal-title {
    font-weight: 400;
}

.selected-events-list {
    background: #0E0412;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.selected-events-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-events-list li {
    border-bottom: 1px solid #333;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #ccc;
}

.selected-events-list li:last-child {
    border-bottom: none;
}

.selected-events-list strong {
    color: white;
    display: block;
    margin-bottom: 2px;
}

.form-control-dark {
    background-color: #0E0412;
    border: 1px solid #333;
    color: white;
}

.form-control-dark:focus {
    background-color: #0E0412;
    border-color: var(--orange);
    color: white;
    box-shadow: none;
}

/* Ajustes Swiper CalendÃ¡rio Mobile */
.calendarMobileSwiper {
    padding-bottom: 20px;
}

.calendar-swiper-pagination {
    bottom: 0 !important;
}

.calendar-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--color-white);
    opacity: 0.3;
}

.calendar-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--orange);
    opacity: 1;
}

@media (min-width: 768px) {
    .calendarMobileSwiper {
        padding-bottom: 0;
        overflow: visible;
    }
}

@media (max-width: 1440px) {
    .hero-title {
        font-size: 40px;
    }

    .event-card-main {
        min-width: 190px;
    }

    #outras-datas-section .swiper .d-flex.align-items-center.gap-2 {
        display: grid !important;
    }
}

/* Media Queries */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .form-bar {
        padding: 2rem;
    }

    main .col-12.col-xl-6.d-flex.flex-column.p-0 {
        padding: 0 50px !important;
    }
}

@media (max-width: 991px) {
    .kv-placeholder {
        border-bottom-left-radius: 0;
    }

    .learning-title {
        font-size: 40px;
    }

    .next-event-box {
        margin-bottom: 20px;
    }

    .host-name {
        font-size: 13px;
    }

    .learning-title br {
        display: none;
    }

    .bottom-cards-row {
        flex-direction: column;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .events-section {
        padding: 2rem 1.5rem;
    }

    .gallerySwiper .swiper-slide {
        width: 75%;
    }

    .gallery-placeholder {
        height: 300px;
    }

    .bottom-form-floating {
        padding: 2rem;
        margin: 0 1rem;
        margin-bottom: -50px;
    }

    .bottom-kv-area {
        min-height: 35vh;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .learning-title {
        font-size: 1.8rem;
    }

    .for-who-title {
        font-size: 1.8rem;
        margin: 0 auto 0 auto;
    }

    .for-who-title br {
        display: none;
    }

    .gallerySwiper .swiper-slide {
        width: 85%;
    }

    .gallery-placeholder {
        height: 200px;
        font-size: 0.9rem;
    }

    .countdown-top {
        text-align: center;
    }

    .timer-wrapper {
        margin: 25px 0;
    }

    .next-event-box {
        margin-bottom: 10px;
    }

    .host-info-wrap {
        justify-content: flex-start;
        margin: 25px 0;
    }

    .location-info-wrap {
        align-items: flex-start;
    }

    .countdown-section-bg {
        background: var(--bg-dark);
    }

    .calendar-title {
        font-size: 1.8rem;
    }

    .bottom-form-floating {
        padding: 1.5rem;
    }

    .hero-title br {
        display: none;
    }

    .social-proof {
        padding: 10px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    main .col-12.col-xl-6.d-flex.flex-column.p-0 {
        padding: 0 30px !important;
    }

    .form-bar .flex .text {
        max-width: 210px;
    }

    .form-subtitle br {
        display: none;
    }

    .events-section {
        padding: 30px 0;
    }

    #outras-datas-section .swiper .d-flex.align-items-center.gap-2 {
        display: flex !important;
    }

    #outras-datas-section .text-end {
        text-align: left !important;
    }

    .gallerySwiper,
    .video-section {
        padding: 0;
    }

    .gallery-section {
        padding: 20px 0 0;
    }

    .countdown-bottom .row.align-items-center.mb-5 {
        margin-bottom: 20px !important;
    }

    .calendar-section {
        padding: 0 0 60px;
    }

    .card-event-title {
        min-height: 50px;
    }

    .features-centered-wrapper {
        margin-top: 20px;
    }

    .features-centered-wrapper {
        max-width: 100%;
    }

    .for-who-section {
        padding-bottom: 50px;
    }

    .bottom-form-floating .text-lg-start {
        display: grid;
    }

    .site-footer {
        padding: 5rem 30px 9rem 30px;
    }

    .bottom-kv-area {
        min-height: 20vh;
    }

    .bottom-form-floating .btn-main {
        text-align: center;
    }

    .learning-section {
        padding-top: 60px;
    }
}