/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'General Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 8px !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Progresso Mejorada */
.progress-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 8px !important;
    z-index: 2147483647 !important;
    background: rgba(24, 24, 24, 0.55); /* Fondo oscuro translúcido */
    border-bottom: 1px solid #d4af37;
    box-shadow: 0 2px 8px #0002;
    pointer-events: none;
}

.progress-bar {
    height: 8px;
    width: 0;
    background: linear-gradient(90deg, #f6d47a 0%, #d4af37 50%, #e6c671 100%);
    transition: width 0.2s cubic-bezier(.4,1.4,.6,1);
    pointer-events: none;
}

/* Botón WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-button:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Header e Navegação */
header {
    width: 100%;
    background: #1a1b1b;
    color: #fff;
    position: relative;
}

.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 27, 27, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 27, 27, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

/* Menú: texto en mayúsculas y alineación vertical centrada */
.nav-menu {
    display: flex;
    align-items: center; /* Centrado vertical */
    height: 100%;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    text-transform: uppercase; /* Todo en mayúsculas */
    letter-spacing: 0.12em;
    font-weight: 600;
    display: flex;
    align-items: center; /* Centrado vertical */
    height: 20px;
    font-size: 12px;
    color: #fff;
    background: none;
    border: none;
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #cb9446, #e6c671);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Botón estilo "SAIBA MAIS" */
.cta-button,
.secondary-button {
    display: inline-block;
    padding: 5px 22px;
    border: 2px solid #d4af37; /* Borde dorado */
    border-radius: 24px;
    background: #111;          /* Fondo negro */
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: pointer;
    text-decoration: none !important;
    margin-bottom: 10px !important;
}

/* Botón inverso para fondo blanco */
.cta-button.invertido,
.secondary-button.invertido {
    background: #e6c671;
    color: #111;
    border: 2px solid #111;
}

.cta-button.invertido:hover,
.secondary-button.invertido:hover {
    background: #111;
    color: #e5bb45;
    border: 2px solid #d4af37;
}

/* Elimina el gradiente anterior del botón principal */
.cta-button {
    background: #111;
    border: 2px solid #d4af37;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cta-button:hover {
    background: #d4af37;
    color: #111;
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 27, 27, 0.8), rgba(26, 27, 27, 0.9)), url('../images/bg-hero.jpg') no-repeat center center/cover;
    padding: 180px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #e6c671;
    font-weight: 700;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 400;
}

.data-evento {
    font-size: 20px;
    margin-bottom: 15px;
    color: #d6a857;
    font-weight: 600;
}

.local-evento {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
}

.local-evento i {
    margin-right: 5px;
    color: #d6a857;
}

.vagas-limitadas {
    margin-top: 20px;
    font-size: 18px;
    color: #e6c671;
    font-weight: 600;
}

/* HERO BANNER MODERNO Y RESPONSIVO */
.hero-banner {
    position: relative;
    width: 100vw;
    min-height: 620px;
    background: url('../images/bg-banner.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 60px;
    padding-bottom: 0;
    overflow: hidden;
}

/* ====== RESPONSIVE: Ajustes de banner para tablets y móviles ====== */
@media (max-width: 900px) {
  .hero-banner {
    min-height: 440px;
    padding-top: 340px;
    padding-bottom: 18px;
  }
}
@media (max-width: 700px) {
  .hero-banner {
    min-height: 420px;
    padding-top: 120px; /* Deja espacio para el header fijo */
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    min-height: 320px;
    padding-top: 95px;
    padding-bottom: 12px;
  }
}
/* ====== FIN RESPONSIVE banner ====== */
.hero-bg-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0%;
    background: linear-gradient(180deg, rgba(24,24,24,0.01) 0%, rgba(24,24,24,0.80) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(24,24,24,0.98) 0%, rgba(24,24,24,0.92) 100%);
    z-index: 1;
}
/* Contenido animado del banner (título y subtítulo) */
.hero-content-anim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    color: #ffe6a7;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
    animation: fadeInUp 1.1s cubic-bezier(.4,1.4,.6,1) 0.1s both;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ====== RESPONSIVE: Ajustes de contenido animado ====== */
@media (max-width: 900px) {
  .hero-content-anim {
    max-width: 98vw;
    padding-top: 60px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 700px) {
  .hero-content-anim {
    padding-top: 25px;
    max-width: 100vw;
  }
}
@media (max-width: 480px) {
  .hero-content-anim {
    padding-top: 8px;
    padding-left: 2px;
    padding-right: 2px;
  }
}
/* ====== FIN RESPONSIVE contenido animado ====== */
@media (max-width: 700px) {
  .hero-content-anim {
    padding-top: 24px;
    max-width: 100vw;
  }
}
@media (max-width: 480px) {
  .hero-content-anim {
    padding-top: 8px;
    padding-left: 2px;
    padding-right: 2px;
  }
}
@media (max-width: 900px) {
  .hero-content-anim {
    max-width: 98vw;
    padding-top: 42px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 700px) {
  .hero-content-anim {
    padding-top: 24px;
    max-width: 100vw;
  }
}
@media (max-width: 480px) {
  .hero-content-anim {
    padding-top: 12px;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* Botón principal del banner */
.hero-cta {
    margin-top: 30px !important;
    margin-bottom: 10px;
    font-size: 1.1rem;
    padding: 14px 38px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 30px;
    box-shadow: 0 4px 24px #0004;
    display: block;
    text-align: center;
    position: relative;
    z-index: 7;
}
/* ====== RESPONSIVE: Botón principal ====== */
@media (max-width: 700px) {
  .hero-cta {
    font-size: 1.13rem;
    padding: 12px 20px;
    margin-top: 20px !important;
  }
}
@media (max-width: 480px) {
  .hero-cta {
    font-size: 1.09rem;
    padding: 10px 6px;
    margin-top: 18px !important;
  }
}
/* ====== FIN RESPONSIVE botón ====== */
@media (max-width: 700px) {
  .hero-cta {
    font-size: 1rem;
    padding: 12px 20px;
    margin-top: 12px !important;
  }
}
@media (max-width: 480px) {
  .hero-cta {
    font-size: 0.95rem;
    padding: 10px 12px;
    margin-top: 8px !important;
  }
}

/* Título principal del banner */
.hero-title {
    font-size: 3.0rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #f0c419 0%, #e6b800 50%, #f0c419 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.15);
    text-fill-color: transparent;
}


/* ====== RESPONSIVE: Título principal ====== */
@media (max-width: 700px) {
  .hero-title { font-size: 2.2rem; margin-bottom: 7px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.3rem; margin-bottom: 5px; }
}
/* ====== FIN RESPONSIVE título ====== */
/* Subtítulo del banner */
.hero-subtitle {
    font-size: 1.10rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px #0008, 0 2px 8px #cb944644;
}
/* ====== RESPONSIVE: Subtítulo ====== */
@media (max-width: 700px) {
  .hero-subtitle { font-size: 1.15rem; margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .hero-subtitle { font-size: 1.01rem; margin-bottom: 12px; }
}
/* ====== FIN RESPONSIVE subtítulo ====== */
.hero-palestrantes-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}
/* ====== INICIO RESPONSIVE área de palestrantes ====== */
@media (max-width: 700px) {
  .hero-palestrantes-area {
    flex-direction: row;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .hero-palestrantes-area { height: 420px; }
}
/* ====== FIN RESPONSIVE área de palestrantes ====== */
.hero-date-row, .hero-time-row {
    display: flex;
    justify-content: right;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #fff;
    font-weight: 600;
}
.hero-date-label, .hero-time-label {
    background: #d1a953;
    color: #181919;
    border-radius: 8px;
    padding: 2px 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-right: 6px;
}
.hero-date-value, .hero-time-value {
    color: #ffe6a7;
    font-weight: 700;
    font-size: 1.1rem;
}
.hero-location-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 28px;
    text-shadow: 0 1px 8px #0008;
}
.hero-location-row i {
    color: #d4af37;
    font-size: 1.2em;
}
.hero-cta {
   display: inline-block;
    padding: 5px 22px !important;
    border: 2px solid #d4af37; /* Borde dorado */
    border-radius: 24px;
    background: #11111169;          /* Fondo negro */
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: pointer;
    text-decoration: none !important;
}
/* Imagen de los palestrantes en el banner */
.hero-palestrantes-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    max-width: 80vw;
    height: auto;
    z-index: 2;
    opacity: 0;
    animation: fadeInPalestrantes 1s 0.5s forwards cubic-bezier(.4,1.4,.6,1);
    pointer-events: none;
    user-select: none;
    object-fit: contain;
}
/* ====== RESPONSIVE: Imagen de palestrantes ====== */
@media (max-width: 900px) {
  .hero-palestrantes-img { width: 620px; max-width: 80vw; transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 700px) {
  .hero-palestrantes-img { width: 310px; max-width: 54vw; bottom: 0; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 480px) {
  .hero-palestrantes-img {
    position: relative !important;
    width: 90vw !important;
    max-width: 520px !important;
    min-width: 510px !important;
  /*  margin: 12px auto 0 auto !important;*/
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    top: unset !important;
    transform: none !important;
    z-index: 10 !important;
    display: block !important;
  }
}
/* ====== FIN RESPONSIVE imagen palestrantes ====== */
@media (max-width: 900px) {
  .hero-palestrantes-img { width: 320px; }
}
@media (max-width: 700px) {
  .hero-palestrantes-img { width: 180px; bottom: 0; }
}
@media (max-width: 480px) {
  .hero-palestrantes-img { width: 120px; }
}

/* Banner inferior con dos columnas */
.hero-bottom-banner {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    height: 70px;
    min-height: 60px;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
  .hero-bottom-banner {
    height: 58px;
    font-size: 0.98rem;
  }
}
@media (max-width: 700px) {
  .hero-bottom-banner {
    flex-direction: column;
    min-height: 0;
    height: auto;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .hero-bottom-banner {
    font-size: 0.88rem;
    padding-bottom: 6px;
  }
}

.hero-bottom-left {
    flex: 1 1 0;
    background: linear-gradient(to right, rgba(24,24,24,1) 80%, rgba(24,24,24,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 32px 24px 0;
    min-width: 0;
}
.hero-bottom-right {
    flex: 1 1 0;
    background: linear-gradient(to right, #d4af37 40%, rgba(212,175,55,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0 24px 32px;
    min-width: 0;
}
.hero-bottom-horario {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: right;
    text-shadow: 0 2px 8px #000a;
}
.hero-bottom-label {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    text-align: right;
}
.hero-bottom-local {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #181919;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    text-shadow: 0 2px 8px #fff4;
}
.hero-local-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    max-width: 90px;
    margin-right: 2px;
}
.hero-local-logo img {
    height: 70px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    display: block;
}
.hero-local-address {
    display: block;
    font-size: 1.08rem;
    color: #181919;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    word-break: break-word;
}
@media (max-width: 700px) {
  .hero-bottom-local {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
    justify-content: center;
    padding: 8px 0 0 0;
  }
  .hero-local-logo {
    margin: 0 6px 0 0;
    max-width: 54px;
    min-width: 40px;
  }
  .hero-local-logo img {
    height: 80px;
    max-width: 120px;
  }
  .hero-local-address {
    font-size: 0.97rem;
    text-align: left;
  }
}


.hero-bottom-icon {
    color: #181919;
    font-size: 1.5em;
    margin-right: 10px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInPalestrantes {
    from { opacity: 0; transform: translateX(-50%) translateY(80px) scale(0.95); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
    .hero-banner { min-height: 520px;padding-top: 260px; }
    .hero-title { font-size: 2.2rem; padding-top: 36px; }
    .hero-palestrantes-img { width: 520px; }
    .hero-bottom-horario { font-size: 1.3rem; }
}
@media (max-width: 700px) {
    .hero-banner { min-height: 420px; padding-top: 100px; padding-bottom: 0; }
    .hero-title { font-size: 1.3rem; padding-top: 36px;}
    .hero-content-anim { padding-bottom: 10px; }
    .hero-palestrantes-img { width: 320px;}
    .hero-date-row, .hero-time-row { font-size: 0.95rem; }
    .hero-location-row { font-size: 0.85rem; }
    .hero-cta { font-size: 0.95rem; padding: 10px 18px; }
    .hero-bottom-banner {
        flex-direction: column;
        min-height: 0;
    }
    .hero-bottom-left, .hero-bottom-right {
        justify-content: center;
        text-align: center;
        padding: 18px 10px;
    }
    .hero-bottom-horario, .hero-bottom-label, .hero-bottom-local {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; margin-top: 40px; }
    .hero-palestrantes-img { z-index: 1; width: 420px;margin-top: 50px; margin-bottom: 5px; }
    .hero-bottom-horario { font-size: 1.1rem; }
}

/* Secciones Generales */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a1b1b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #cb9446, #e6c671);
    margin: 0 auto;
}

/* Sección Sobre */
#sobre {
    background: #f9f9f9;
}

.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.video-container {
    flex: 1 1 500px;
    max-width: 00px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.texto-sobre {
    flex: 1 1 400px;
}

.texto-sobre p {
    margin-bottom: 20px;
    margin-left: 14px;
    margin-right:10px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.texto-sobre .cta-button {
    margin-top: 2px;
}

/* Sección Palestrantes */
.palestrantes-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.palestrante-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.palestrante-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.palestrante-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.palestrante-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.palestrante-card:hover .palestrante-image img {
    transform: scale(1.05);
}

.palestrante-info {
    flex: 1;
    padding: 30px;
}

.palestrante-info h3 {
    font-size: 24px;
    color: #1a1b1b;
    margin-bottom: 5px;
}

.palestrante-info h4 {
    font-size: 18px;
    color: #cb9446;
    margin-bottom: 20px;
    font-weight: 500;
}

.palestrante-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Sección Programación */
#programacao {
    background: #f9f9f9;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #cb9446, #e6c671);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.timeline-time {
    position: absolute;
    left: -230px;
    width: 230px;
    margin-top: 20px;
    text-align: right;
    font-weight: 600;
    color: #cb9446;
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -60px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cb9446;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(203, 148, 70, 0.2);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1b1b;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
}

/* Sección Aulas Gratuitas */
.aulas-tabs {
    margin-bottom: 40px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 30px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.tab-button.active {
    background: linear-gradient(to right, #cb9446, #d6a857);
    color: #fff;
    box-shadow: 0 4px 10px rgba(203, 148, 70, 0.3);
}

.tabs-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.vsl-aulas-gratis {
    width: 100%;
    max-width: 800px;
    margin: 15px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.aula-info {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .vsl-aulas-gratis,
    .aula-info {
        max-width: 600px;
    }
}
@media (max-width: 600px) {
    .vsl-aulas-gratis,
    .aula-info {
        max-width: 400px;
    }
}

.aula-video {
    flex: 1 1 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aula-info {
    flex: 1 1 230px;
    padding: 20px;
}

.aula-info h3 {
    font-size: 24px;
    color: #1a1b1b;
    margin-bottom: 15px;
}

.aula-info p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.aulas-cta {
    text-align: center;
    margin-top: 5px;
}

.secondary-button {
    display: inline-block;
    padding: 10px 32px;
    border: 2px solid #d4af37; /* Borde dorado */
    border-radius: 24px;
    background: #111;          /* Fondo negro */
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: pointer;
    text-decoration: none !important;
}

/* Botón inverso para fondo blanco */
.secondary-button.invertido {
    background: #d4af37;
    color: #111;
    border: 2px solid #111;
}

.secondary-button.invertido:hover {
    background: #111;
    color: #fff;
    border: 2px solid #d4af37;
}

.secondary-button:hover {
    background: #d4af37;   /* Fondo dorado al pasar mouse */
    color: #111;           /* Texto negro */
    border-color: #fff;    /* Borde blanco al hover */
}

/* Seção Inscripción */
#inscricao {
    background: linear-gradient(rgba(26, 27, 27, 0.92), rgba(26, 27, 27, 0.92)), url('../images/bg-inscricao.jpg') no-repeat center center/cover;
    color: #fff;
}

#inscricao .section-header h2 {
    color: #fff;
}

.inscricao-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.inscricao-info {
    flex: 1 1 450px;
}

.event-details {
    margin-bottom: 40px;
}

.event-detail {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.event-detail i {
    font-size: 24px;
    color: #cb9446;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.event-detail h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #e6c671;
}

.event-detail p {
    color: #ddd;
}

.vagas-counter {
    text-align: center;
    margin-bottom: 40px;
}

.vagas-counter h3 {
    font-size: 24px;
    color: #e6c671;
    margin-bottom: 15px;
}

.counter {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 10px;
    border: 2px solid #cb9446;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 16px;
    color: #ddd;
}

.inscricao-valor {
    margin-bottom: 40px;
}

.inscricao-valor h3 {
    font-size: 24px;
    color: #e6c671;
    margin-bottom: 15px;
    text-align: center;
}

.valor-container {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.valor-original {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 10px;
}

.valor-original span {
    text-decoration: line-through;
    color: #999;
}

.valor-atual {
    font-size: 36px;
    font-weight: 700;
    color: #e6c671;
    margin-bottom: 10px;
}

.valor-parcelado {
    font-size: 16px;
    color: #ddd;
}

.garantia {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.garantia img {
    width: 80px;
    height: 80px;
}

.garantia p {
    color: #ddd;
    font-size: 14px;
}

.inscricao-form {
    flex: 1 1 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 40px;
    color:  #e6c671;
}

.inscricao-form h3 {
    font-size: 22px;
    color: #1a1b1b;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #cb9446;
    outline: none;
    box-shadow: 0 0 0 2px rgba(203, 148, 70, 0.2);
}

.inscricao-form .cta-button {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
}

.pagamento-seguro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #666;
}

.pagamento-seguro i {
    margin-right: 8px;
    color: #cb9446;
}

.bandeiras {
    margin-top: 20px;
    text-align: center;
}

.bandeiras img {
    max-width: 100%;
    height: auto;
}

/* Carrusel de Partners/Patrocinadores */
.partners-section, .partners-carousel-wrapper {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.partners-carousel {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    margin: 0 auto;
}
html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}
.partners-section {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.partners-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}
.partners-carousel {
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
}
.carousel-track {
    display: flex;
    gap: 32px;
    align-items: center;
    min-width: fit-content;
    transition: transform 0.5s cubic-bezier(.4,1.4,.6,1);
}
.partner-logo {
    width: 196px;
    height: 196px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: filter 0.3s, box-shadow 0.3s, transform 0.3s;
    padding: 12px;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 900px) {
  .partners-section,
  .partners-carousel-wrapper {
    max-width: 600px;
  }
  .partner-logo {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 600px) {
  .partners-section,
  .partners-carousel-wrapper {
    max-width: 100vw;
  }
  .partner-logo {
    width: 90px;
    height: 90px;
  }
}
.partner-logo.gray {
    filter: grayscale(1) contrast(1.1) brightness(1.1);
}
.partner-logo.gray:hover,
.partner-logo:not(.gray):hover {
    filter: none;
    box-shadow: 0 8px 32px rgba(212,175,55,0.13);
    transform: scale(1.05);
    z-index: 2;
}
.carousel-btn {
    background: #e6c671;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(203,148,70,0.14);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 3;
    margin: 0 8px;
}
.carousel-btn:hover {
    background: #cb9446;
    color: #fff;
}
@media (max-width: 1100px) {
    .partner-logo {
        width: 180px;
        height: 180px;
    }
    .carousel-track {
        gap: 20px;
    }
}
@media (max-width: 700px) {
    .partners-carousel {
        max-width: 100vw;
    }
    .partner-logo {
        width: 120px;
        height: 120px;
        padding: 8px;
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .carousel-track {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .partner-logo {
        width: 100px;
        height: 100px;
        padding: 5px;
    }
    .container {
        padding-left: 2px;
        padding-right: 2px;
    }
    .carousel-track {
        gap: 2px;
    }
}

/* Sección FAQ */
#faq {
    background: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    color: #1a1b1b;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #cb9446;
}

.faq-plus {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #cb9446;
    transition: all 0.3s ease;
}

.faq-item.active .faq-plus {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #1a1b1b;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-info {
    flex: 1 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-contact h4, .footer-social h4 {
    font-size: 18px;
    color: #e6c671;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h4:after, .footer-social h4:after {
    content: '';
    position: relative;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #cb9446;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact i,
.footer-social i,
.social-icons i,
.footer-contact .fa,
.footer-contact .fas,
.footer-contact .fab {
    color: #cb9446 !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    margin: 0 6px;
    font-size: 28px;
    transition: background 0.2s;
}
.social-icons a:hover {
    background: rgba(203,148,70,0.08);
}

@media (max-width: 600px) {
  footer .container, .footer-content, .footer-logo, .footer-info, .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .footer-contact, .footer-social, .footer-nav {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .footer-contact p {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .social-icons {
    justify-content: center !important;
    width: 100% !important;
  }
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #cb9446;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #cb9446;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4b381e16;
    transform: translateY(-3px);
}

.footer-nav {
    flex: 1 1 200px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-nav ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #cb9446;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #e6c671;
    padding-left: 20px;
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e6c671;
}

/* Responsividade */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .palestrante-image {
        flex: 0 0 250px;
    }
    
    .valor-atual {
        font-size: 32px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin: 8px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(26, 27, 27, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 130px 0 70px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .palestrante-card {
        flex-direction: column;
    }
    
    .palestrante-image {
        flex: auto;
        height: 250px;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-time {
        position: relative;
        left: 0;
        text-align: left;
        margin-bottom: 5px;
        padding-left: 45px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-content:before {
        left: -38px;
    }
    
    .tab-button {
        padding: 10px;
        font-size: 14px;
    }
    
    .aula-video, .aula-info {
        flex: 1 1 100%;
    }
    
    .inscricao-form {
        padding: 30px 20px;
    }
    
    .footer-content > div {
        flex: 1 1 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .sobre-content, .palestrantes-grid {
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .tabs-header {
        flex-direction: column;
        border-radius: 10px;
        gap: 10px;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .valor-atual {
        font-size: 28px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button img {
        width: 50px;
        height: 50px;
    }
}
