/* 
  ENFAUTO 2026 - Minimal Foundation
  Hero V3 + Top Banner Only
*/

:root {
    --primary: #1C1847;
    --secondary: #FF9700;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-page: #010508;
    --bg-accent: #06103A;
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.3);
    --font-main: 'Archivo', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
}


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

/* Top Banner (Fixed CTA) */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1c184773;
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1000;
    text-transform: uppercase;
}

/* Hero Section V3 */
.hero-v3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
     background: linear-gradient(45deg, rgba(4, 0, 24, 0.589) 0%, rgba(4, 0, 24, 0.589) 70%, #ff8800a9 100%), url('assets/pessoas.jpg') center/cover no-repeat;
    filter: contrast(1.15) brightness(0.9) saturate(0.8);
    position: relative;
    padding-bottom: 25px;
    overflow: hidden;
}

.hero-v3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-content-v3>* {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.logo-v3 {
    animation-delay: 0.2s !important;
}

.hero-v3 h1 {
    animation-delay: 0.4s !important;
}

.hero-subtitle-v3 {
    animation-delay: 0.6s !important;
}

.hero-actions-v3 {
    animation-delay: 0.8s !important;
}

.logo-v3 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-v3 h1 {
    font-size: 2.8vw;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white !important;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-v3 {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions-v3 {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-container-v3 {
    width: 100%;
}

/* Desktop: Left align content + Side Image */
@media (min-width: 769px) {
    .hero-container-v3 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content-v3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 5;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo-v3 {
        justify-content: center;
    }

    .hero-v3 h1 {
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
    }

    .hero-subtitle-v3 {
        margin-left: auto;
        margin-right: auto;
        max-width: 700px;
    }

    .hero-actions-v3 {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .hero-v3 {
        
        position: relative;
        overflow: hidden;
    }

    .hero-container-v3 {
        position: relative;
        z-index: 2;
        /* Acima do overlay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        align-items: flex-start;
        min-height: 100vh;
        width: 100%;
    }

    .hero-content-v3 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5%;
        z-index: 5;
    }

    .hero-actions-v3 {
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-social-proof {
        align-items: flex-start;
        text-align: left;
        margin-right: 20px !important;
    }

    .hero-subtitle-v3 {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 1.4;
    }

    .logo-v3 {
        margin-bottom: 16px;
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }

    .avatar-group img,
    .avatar-plus {
        width: 15px;
        height: 15px;
        margin-left: -6px;
    }

    .avatar-plus {
        font-size: 12px;
        padding-bottom: 1px;
    }

    .social-text {
        display: none;
    }
}

/* Figma-Style Button with Star Border Effect */
.btn-figma {
    position: relative;
    width: auto;
    display: inline-flex;
    min-width: 260px;
    height: 68px;
    border-radius: 100px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 32px;
    gap: 24px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    /* Outer border background */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-figma::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 300px;
    background: radial-gradient(circle,
            white 0%,
            rgba(255, 255, 255, 0.8) 10%,
            transparent 60%);
    transform-origin: 0% 50%;
    /* Anchor rotation to one side to sweep around the edge */
    animation: rotate-btn 3s linear infinite;
    z-index: 0;
    filter: blur(2px);
}

@keyframes rotate-btn {
    from {
        transform: translate(0, -50%) rotate(0deg);
    }

    to {
        transform: translate(0, -50%) rotate(360deg);
    }
}

/* Internal dark surface to mask the conic gradient and create the glow on the edge */
.btn-figma::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: radial-gradient(50% 50% at 50% 50%, #f38d39 0%, var(--secondary) 100%);
    border-radius: 100px;
    z-index: 1;
    transition: background 0.3s ease;
}

.btn-figma span,
.btn-figma .btn-circle-figma {
    position: relative;
    z-index: 2;
}



@keyframes rotate-star {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-figma span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.btn-circle-figma {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C1847;
}

/* Infinite Ticker */
.ticker-v3 {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scrollTicker 30s linear infinite;
    width: max-content;
}

.ticker-track img {
    height: 32px;
    filter: grayscale(1) opacity(0.3);
}

.ticker-sep {
    font-size: 24px;
    color: rgba(28, 24, 71, 0.1);
}

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

    100% {
        transform: translateX(-50%);
    }
}




/* Responsiveness */
@media (max-width: 1024px) {
    .hero-v3 h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }


    .hero-v3 h1 {
        font-size: 25px;
        margin: 0 0 12px;
        text-align: left;
    }



    .btn-figma {
        width: 100%;
        height: 56px;
        padding: 0 6px 0 20px;
    }

    .btn-figma span {
        font-size: 14px;
    }

    .btn-circle-figma {
        width: 40px;
        height: 40px;
    }

    .top-banner {
        font-size: 8px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 110px 0;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.event-video-section {
    padding: 20px 0 30px;
    background: var(--bg-page);
}

.event-video-wrapper {
    position: relative;
    width: min(1100px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.event-video {
    width: 100%;
    display: block;
    background: #000;
}

.event-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    border-radius: 50px;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.event-video-play:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.event-video-play svg {
    flex-shrink: 0;
}

.event-video-play.is-hidden {
    display: none;
}

.event-video-error {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    max-width: min(360px, 92%);
    padding: 14px 18px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.event-video-wrapper--error .event-video {
    opacity: 0.35;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 900px);
    height: min(80vw, 900px);
    background: radial-gradient(circle, rgba(0, 113, 255, 0.08) 0%, rgba(233, 64, 255, 0.05) 30%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 56px;
}

.about-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.about-desc {
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.about-stats-bento {
    max-width: 1160px;
    margin: 0 auto;
}

.stat-card {
    background: #0a0d15;
    border-radius: 14px;
    padding: 20px 18px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    min-height: 200px;
    opacity: 0;
    transform: translateY(30px);
    animation: statFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(5) {
    animation-delay: 0.5s;
}

.stat-card * {
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.02);
}

.stat-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.stat-title {
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-transform: none;
}

.stat-text {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    max-width: 100%;
}

.stat-card-bosch {
    justify-content: flex-start;
}

.stat-bosch-image {
    width: 100%;
    height: 66%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
}

@media (min-width: 769px) {

    /* Sticky precisa de overflow visivel no ancestral (hidden quebra o sticky) */
    .about-section {
        overflow: visible;
    }

    .stat-icon {
        display: none;
    }

    .about-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(28px, 4vw, 56px);
        align-items: start;
    }

    /* Coluna esquerda ocupa a altura da coluna dos cards para o sticky poder “descer” com o scroll */
    .about-sticky-side {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .about-sticky-inner {
        position: sticky;
        top: 88px;
        align-self: flex-start;
        width: 100%;
        padding-right: 8px;
        padding-bottom: 24px;
    }

    .about-layout .about-header {
        text-align: left;
        margin: 0;
        max-width: 38rem;
    }

    .about-layout .about-title {
        font-size: clamp(1.45rem, 2.1vw, 2rem);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .about-layout .about-desc {
        font-size: clamp(0.95rem, 1.2vw, 1.05rem);
        line-height: 1.65;
        margin: 0;
        max-width: 100%;
    }

    .about-layout .about-stats-bento {
        --timeline-progress: 0;
        display: block;
        padding-left: 28px;
        position: relative;
        margin: 0;
        max-width: none;
    }

    .about-layout .about-stats-bento::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7px;
        width: 2px;
        background: var(--secondary);
        opacity: 0.22;
    }

    .about-layout .about-stats-bento::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7px;
        width: 2px;
        background: var(--secondary);
        transform-origin: top center;
        transform: scaleY(var(--timeline-progress));
        opacity: 0.9;
        will-change: transform;
    }

    .about-layout .stat-card {
        padding: 10px 0 16px 18px;
        min-height: auto;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        transform: none;
        animation: none;
        overflow: visible;
    }

    .about-layout .stat-card+.stat-card {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
    }

    .about-layout .stat-bosch-image {
        display: none;
    }

    .about-layout .stat-card-participants .stat-title,
    .about-layout .stat-card-participants .stat-text,
    .about-layout .stat-card-companies .stat-title,
    .about-layout .stat-card-companies .stat-text,
    .about-layout .stat-card-bosch .stat-title,
    .about-layout .stat-card-bosch .stat-text {
        color: #fff;
    }

    .about-layout .stat-card::after {
        content: "";
        position: absolute;
        display: block;
        left: -25px;
        top: 14px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--secondary);
        box-shadow: 0 0 0 3px rgba(255, 151, 0, 0.18);
        z-index: 2;
    }

    .about-layout .stat-title {
        font-size: 1.55rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .about-layout .stat-text {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.55;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .event-video-section {
        padding: 10px 0 24px;
    }

    .event-video-wrapper {
        margin: 0 20px;
        width: auto;
        border-radius: 20px;
    }

    .event-video-play {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
        max-width: 100%;
        width: 75%;
    }
    
    .event-video-play svg {
        width: 36px;
        height: 36px;
    }

    .about-header {
        text-align: left;
        margin: 0 0 36px;
    }

    .about-stats-bento {
        --timeline-progress: 0;
        grid-template-columns: 1fr;
        gap: 18px;
        position: relative;
        padding-left: 28px;
    }

    .about-stats-bento::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7px;
        width: 2px;
        background: var(--secondary);
        opacity: 0.22;
    }

    .about-stats-bento::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7px;
        width: 2px;
        background: var(--secondary);
        transform-origin: top center;
        transform: scaleY(var(--timeline-progress));
        opacity: 0.9;
        will-change: transform;
    }

    .about-title {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .about-desc {
        font-size: 0.88rem;
        line-height: 1.55;
        margin: 0;
    }

    .stat-card {
        padding: 10px 0 16px 18px;
        min-height: auto;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        transform: none;
        animation: none;
        overflow: visible;
    }

    .stat-card+.stat-card {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
    }

    .stat-card::before,
    .stat-card::after {
        display: none;
    }

    .stat-card::marker {
        content: none;
    }

    .stat-card .stat-icon {
        display: none;
    }

    .stat-bosch-image {
        display: none;
    }

    .stat-card-participants .stat-title,
    .stat-card-participants .stat-text,
    .stat-card-companies .stat-title,
    .stat-card-companies .stat-text,
    .stat-card-bosch .stat-title,
    .stat-card-bosch .stat-text {
        color: #fff;
    }

    .stat-card::after {
        content: "";
        position: absolute;
        display: block;
        left: -25px;
        top: 14px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--secondary);
        box-shadow: 0 0 0 3px rgba(255, 151, 0, 0.18);
        z-index: 2;
    }

    .stat-title {
        text-transform: none;
        letter-spacing: -0.01em;
        font-size: 1.55rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .stat-text {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.55;
    }
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */

.speakers-section {
    padding: 100px 0 80px;
    background: #ffffff;
background: #ffffff;
    color: #111827;
    overflow: hidden;
}

/* ============================================
   INFO + PASSES SECTIONS
   ============================================ */

.info-section,
.passes-section {
    padding: 90px 0;
    background: #ffffff;
    color: #111827;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 46px;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #0f172a;
}

.section-subtitle {
    color: #475467;
    font-size: 1.02rem;
    line-height: 1.6;
}

.section-note {
    margin-top: 12px;
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.6;
}

.pricing-shell {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .pricing-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


.pricing-card {
    background: url("assets/fundo2.png");
    background-size: cover;
    background-position: center;
   
    border-radius: 32px;
    padding: 45px 35px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}



.pricing-card>* {
    position: relative;
    z-index: 1;
}



.pricing-title {
    font-size: 1.3rem;
    color: #ffffffe7;
    margin-bottom: 20px;
    
}

.pricing-price {
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    margin-bottom: 30px;
}

.pricing-button {
    background: linear-gradient(135deg, rgb(252, 154, 62), var(--secondary), rgb(245, 113, 25));
    color: white;
    display: flex;
    border-radius: 100px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}


.pricing-list {
    list-style: none;
    display: grid;
    gap: 15px;
    margin-top: 40px;
}

.pricing-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.84rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 10px;
}

.pricing-list li:nth-last-child(1) {
    border-bottom: none;
}

.pricing-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
}

.passes-warning{
    background-color: #010720;
    border-radius: 32px;
    color: rgba(255, 255, 255, 0.808);
    padding: 20px 40px;
    margin-top: 20px;
}



/**COMPARISON SECTION**/
.comparison-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.comparison-table {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    position: relative;
    border: none;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    
}





.comparison-table.scrolling::after {
    opacity: 1;
}

.comparison-row {
    display: grid;
    grid-template-columns: 180px repeat(4, 1fr);
    gap: 0;
    padding: 0;
    
    min-width: 800px;
}

.comparison-row:last-child {
    border-bottom: none;
}


.comparison-title-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.comparison-header {
    
    background: #ffffff;
    z-index: 10;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.comparison-header .comparison-cell {
    font-weight: 700;
    background: transparent;
    border-bottom: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:not(.benefit-cell):not(.comparison-header .comparison-cell) {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px;
    text-align: left;
    min-height: 60px;
    border-radius: 0;
    transition: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.benefit-cell {
    background: transparent;
    border: none;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 16px 14px;
    min-height: 60px;
    border-radius: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.benefit-cell:last-child {
    border-bottom: none;
}

.ticket-type {
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-icon {
    font-size: 20px;
}

.benefit-text {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

.check-icon {
    font-weight: bold;
    font-size: 18px;
    color: #28bf1b;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.check-icon.red-x {
    color: #888888;
    font-weight: 400;
    font-size: 24px;
}

.check-icon.animate {
    opacity: 1;
    transform: translateY(0);
}

.check-icon.red-x {
    color: #888888;
    font-weight: 400;
    font-size: 24px;
}

.check-text {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 4px;
}



/* Ideal Passport Section */
.ideal-passport-section {
    background: url('assets/palestra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow:  hidden;
}

.overlay {
    position: absolute;
    padding: 6rem 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 4, 32, 0.8);
    z-index: 1;
}

.ideal-passport-section > * {
    position: relative;
    z-index: 2;
}

.passport-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profile-card {
    background: rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.profile-icon {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile-icon i {
    color: #ffffff;
    width: 28px;
    height: 28px;
}

.profile-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Archivo', sans-serif;
}

.profile-description {
    color: #9da3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.profile-recommendation {
    margin-top: auto;
}

.profile-recommendation .badge {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.ideal-passport-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Mobile Responsivo */
@media (max-width: 768px) {
    
    .passport-profiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-table {
        padding: 0;
        border-radius: 0;
        margin: 40px 0;
        width: 100%;
    }
    
    .comparison-row {
        grid-template-columns: 140px repeat(4, 1fr);
        gap: 0;
        padding: 0;
        min-width: 700px;
    }
    
    .comparison-cell {
        padding: 12px 8px;
        min-height: 60px;
        font-size: 12px;
    }
    
    .benefit-cell {
        gap: 8px;
        padding: 16px 12px;
        min-height: 60px;
    }
    
    .benefit-text {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .ticket-type {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .check-icon {
        font-size: 16px;
    }
    
    .comparison-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
    
    .comparison-image-card {
        padding: 20px;
    }
    
    .image-caption {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 50px 15px;
    }
    
    .comparison-table {
        margin: 40px 0;
        width: 100%;
    }
    
    .comparison-row {
        grid-template-columns: 120px repeat(4, 1fr);
        gap: 0;
        padding: 0;
        min-width: 650px;
    }
    
    .comparison-cell {
        padding: 10px 6px;
        min-height: 55px;
        font-size: 11px;
    }
    
    .benefit-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 10px;
        min-height: 55px;
    }
    
    .benefit-text {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .check-icon {
        font-size: 14px;
    }
    
    .check-text {
        font-size: 9px;
        margin-top: 4px;
    }
    
    .ticket-type {
        font-size: 9px;
        letter-spacing: 0.2px;
    }
    
    .comparison-images {
        margin-top: 50px;
        gap: 16px;
    }
    
    .comparison-image-card {
        padding: 16px;
    }
    
    .image-caption {
        font-size: 12px;
    }
}

/**SPEAKERS**/

.speakers-header {
    text-align: center;
    padding: 0 40px;
    margin-bottom: 56px;
}

.speakers-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.speakers-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #101828;
    line-height: 1.1;
    margin-bottom: 16px;
}

.speakers-subtitle {
    font-size: 1.05rem;
    color: #475467;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Carousel (drag / scroll) --- */
.speakers-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 60px;
    cursor: grab;
    user-select: none;
}

.speakers-carousel::-webkit-scrollbar {
    display: none;
}

.speakers-carousel.is-dragging {
    cursor: grabbing;
}

/* ============================================
   USER CARD
   ============================================ */

.user-card {
    width: 340px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #000;
}

/* drag-prevention on all carousel children */
.speakers-carousel * {
    -webkit-user-drag: none;
    pointer-events: none;
}

/* restore interactivity for the follow button */
.speakers-carousel .user-card__follow-btn,
.speakers-carousel .user-card__actions {
    pointer-events: auto;
}

.user-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    backdrop-filter: blur(30px) saturate(220%);
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.726) 0%,
            rgba(0, 0, 0, 0.582) 24%,
            rgba(0, 0, 0, 0.61)),
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.01) 30%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.08) 70%,
            rgba(255, 255, 255, 0.15) 85%,
            rgba(255, 255, 255, 0.2) 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.5) 55%,
            black 75%);
}

.user-card__media {
    margin: 0;
}

.user-card__avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.user-card__body {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: #ddd;
    z-index: 1;
}

.user-card__header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.user-card__name {
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.user-card__badge {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: var(--secondary);
}

.user-card__description {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.user-card__footer {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Proof (Bolinhas) */
.hero-social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img,
.avatar-plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    object-fit: cover;
    background: #FFD700;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-plus {
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.user-card__stats {
    display: flex;
    gap: 8px;
}

.user-card__stat {
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.8rem;
    display: flex;
    line-height: 1;
    align-items: center;
    gap: 4px;
    padding: 0.4rem 0.7rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.user-card__stat-value {
    font-weight: 700;
}

.user-card__actions {
    display: flex;
    align-items: center;
}

.user-card__follow-btn {
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.8rem;
    display: flex;
    line-height: 1;
    align-items: center;
    gap: 4px;
    padding: 0.4rem 0.7rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.3s ease;
}

.user-card__follow-btn svg {
    width: 20px;
    height: 20px;
}

.user-card__follow-btn:hover {
    background-color: rgba(0, 0, 0, 0.45);
    transform: scale(1.08);
}

.user-card__follow-btn:active {
    transform: translateY(1px);
}

.user-card__follow-btn:focus-visible {
    outline: 2px solid #333;
    outline-offset: 3px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .speakers-section {
        padding: 72px 0 60px;
    }

    .info-section,
    .passes-section {
        padding: 60px 0;
    }

    .section-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .pricing-shell {
        padding: 0;
        gap: 16px;
    }

    .pricing-card {
       
        min-height: 0;
    }

    .pricing-card .pricing-cta {
        width: auto;
        max-width: 100%;
        height: 48px;
        min-height: 48px;
        padding: 0 6px 0 14px;
        margin-bottom: 14px;
    }

    .pricing-card .pricing-cta .btn-circle-figma {
        width: 36px;
        height: 36px;
    }

    .pricing-card .pricing-cta span {
        font-size: 13px;
        white-space: normal;
        line-height: 1.25;
    }

    .pricing-title {
        font-size: 1.65rem;
    }

    .pricing-price {
        font-size: 1.25rem;
    }

    .speakers-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .speakers-carousel {
        padding: 16px 20px;
        gap: 16px;
    }

    .carousel-arrow {
        display: none;
        /* rely on native scroll on mobile */
    }

    .user-card {
        width: 280px;
        height: 440px;
        border-width: 8px;
        border-radius: 28px;
    }

    .user-card__name {
        font-size: 1.2rem;
    }

    .user-card__description {
        font-size: 0.82rem;
    }
}

/* Purchase Information Section */
.purchase-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.purchase-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.purchase-info-card {
    background: #02022b;
    border: 2px solid #091f4b48;
    border-radius: 32px;
    padding: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.purchase-info-bg-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 80px;
    height: 80px;
    opacity: 0.8;
    z-index: 1;
}

.purchase-info-bg-icon svg {
    fill: var(--secondary);
}

.purchase-info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 2;
}

.purchase-info-title,
.purchase-info-description {
    position: relative;
    z-index: 2;
}

.purchase-info-icon svg {
    width: 24px;
    height: 24px;
}

.purchase-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.purchase-info-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Update section label and title for white background */
.purchase-info-section .section-label {
    color: #6b7280;
}

.purchase-info-section .section-title {
    color: #1f2937;
}

/* Mobile responsiveness for purchase info */
@media (max-width: 768px) {
    .purchase-info-section {
        padding: 60px 0;
    }
    
    .purchase-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .purchase-info-card {
        padding: 20px;
    }
    
    .purchase-info-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    
    .purchase-info-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .purchase-info-title {
        font-size: 1.1rem;
    }
    
    .purchase-info-description {
        font-size: 0.9rem;
    }
}

/* Animated Social Proof Section */
.animated-social-section {
    padding: 100px 0;
    background: url("assets/fundo.png");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    margin-top: 60px;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}


.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial {
    color: rgba(255, 255, 255, 0.897);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-style: italic;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 4px 0;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .animated-social-section {
        padding: 60px 0;
    }
    
    .carousel-track {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .social-card {
        padding: 24px;
    }
}

/* Fundo da seção precisa ser um pouquinho escuro (gelo) para o card branco destacar */
.sponsors-section {
    padding: 80px 0;
    background: #f8f9fc; 
    font-family: sans-serif;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.section-note {
    color: #555;
    font-size: 1.1rem;
}

/* Grid Principal */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Os cards em si (agora são brancos) */
.sponsor-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bordas coloridas no topo de cada bloco */
.gold-block { border-top: 4px solid #c9a227; }
.platinum-block { border-top: 4px solid #3aabed; }
.silver-block { border-top: 4px solid #4b5563; grid-column: 1 / -1; }
.expositor-block { border-top: 4px solid #8b673d; grid-column: 1 / -1; }

/* O bloco master ganha destaque subindo um pouco e tendo mais sombra */
.master-block {
    border-top: 4px solid #14532d;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Estilo das categorias (Pílulas / Badges) */
.sponsor-category {
    margin-bottom: 30px;
}

.badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Cores das pílulas para cada categoria */
.gold-badge { background: #fef9c3; color: #a16207; }
.master-badge { background: #dcfce7; color: #166534; }
.platinum-badge { background: #dbeafe; color: #1e40af; }
.silver-badge { background: #e5e7eb; color: #374151; }
.expositor-badge { background: #e9ded2; color: #8b673d; }

/* Lista de Logos */
.sponsor-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Ajuste dos logos */
.sponsor-item img {
    max-width: 130px; /* Tamanho do logo */
    max-height: 60px;
    object-fit: contain;
    /* Dica: se quiser os logos todos pretos e coloridos só no hover: */
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
}

.sponsor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsividade para Celulares */
@media (max-width: 992px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .master-block {
        transform: translateY(0); /* Tira o efeito de subir no mobile */
    }
    
    .silver-block, 
    .expositor-block {
        grid-column: auto;
    }
}
/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: #02022B;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 151, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--secondary);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        margin: 40px auto 0;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .user-card {
        width: calc(85vw);
        height: 420px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    .stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .testimonial {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #0F0A29;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ff8800;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item svg {
    flex-shrink: 0;
    color: #ff8800;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff8800;
}

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

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .footer-brand p {
        margin: 0 auto;
        font-size: 13px;
        max-width: 280px;
    }
    
    .footer-contact {
        align-items: center;
        gap: 15px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-item a {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 18px;
    }
    
    .footer-brand p {
        font-size: 12px;
        max-width: 250px;
    }
    
    .contact-item a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

/* Sponsor CTA Section */
.sponsor-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 136, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sponsor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="50" r="0.5" fill="white" opacity="0.15"/><circle cx="50" cy="90" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

.sponsor-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.sponsor-cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.sponsor-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #ff8800;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.sponsor-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: #f8f8f8;
}

.sponsor-cta-btn svg {
    flex-shrink: 0;
}

/* Responsive Sponsor CTA */
@media (max-width: 768px) {
    .sponsor-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .sponsor-cta-title {
        font-size: 24px;
    }
    
    .sponsor-cta-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .sponsor-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}