:root {
    /* Colors from Briefing */
    --color-text: #111111;
    --color-text-highlight: #BF6B63;
    --color-border: #F2AB9B;
    --color-primary: #F28A80;

    /* Secondary Colors */
    --color-secondary-1: #F27979;
    --color-secondary-2: #F2AB9B;
    --color-secondary-3: #BF6B63;

    /* Neutral Colors */
    --color-neutral-white: #ffffff;
    --color-neutral-light-rose: #F2DAD8;
    --color-neutral-dark-brown: #693D39;
    --color-neutral-very-light-rose: #FCE6E2;
    --color-background: #ffffff;
    --color-background-lighter: #FFF5F3;
    --color-surface: #ffffff;

    /* Gradients */
    --gradient-light-rose: linear-gradient(135deg, #FCE6E2, #F2AB9B);
    --gradient-medium-rose: linear-gradient(135deg, #F28A80, #F27979);
    --gradient-wine: linear-gradient(135deg, #BF6B63, #693D39);
    --gradient-black: linear-gradient(135deg, #393939, #111111);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --line-height-base: 1.4;
    --letter-spacing-base: 0px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing-base);
    overflow-x: hidden;
}

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

/* Respiro lateral maior no mobile para que o texto não encoste nas bordas */
@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 800;
}

/* Typography elements */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--color-text);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-medium-rose);
    color: var(--color-neutral-white);
    border: none;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-neutral-white);
    transform: translateY(-3px);
}

.btn-gradient-wine {
    background: var(--gradient-wine);
    color: var(--color-neutral-white);
    box-shadow: 0 4px 15px rgba(191, 107, 99, 0.4);
}

.btn-gradient-wine:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 107, 99, 0.6);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: static;
    z-index: 1000;
    border-bottom: 1px solid rgba(242, 171, 155, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    max-height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* General Section Styling */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--color-background-lighter);
}

/* Video Intro Section */
.video-intro-section {
    width: 100%;
    background: #000;
}

.video-intro-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
}

.video-intro-container iframe,
.video-intro-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Camada removida: não deve bloquear o clique/play do vídeo */
.video-intro-overlay {
    display: none;
}

/* Botão "Clique para ouvir" sobre o vídeo em autoplay */
.video-intro-unmute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.05rem 1.65rem;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-family: inherit;
    font-size: 1.425rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.3s ease;
    animation: video-intro-pulse 2s ease-in-out infinite;
}

.video-intro-unmute:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-intro-unmute-icon {
    width: 33px;
    height: 33px;
    flex-shrink: 0;
}

.video-intro-unmute.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Botão persistente de ligar/desligar o som (aparece após "Clique para ouvir") */
.video-intro-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.3s ease;
}

.video-intro-toggle:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
}

.video-intro-toggle svg {
    width: 26px;
    height: 26px;
}

/* Mostra o ícone conforme o estado (aria-pressed = som ligado) */
.video-intro-toggle .video-intro-toggle-off {
    display: none;
}

.video-intro-toggle[aria-pressed="true"] .video-intro-toggle-on {
    display: block;
}

.video-intro-toggle[aria-pressed="true"] .video-intro-toggle-off {
    display: none;
}

.video-intro-toggle[aria-pressed="false"] .video-intro-toggle-on {
    display: none;
}

.video-intro-toggle[aria-pressed="false"] .video-intro-toggle-off {
    display: block;
}

.video-intro-toggle.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .video-intro-toggle {
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .video-intro-toggle svg {
        width: 22px;
        height: 22px;
    }
}

@keyframes video-intro-pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.25);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 600px) {
    .video-intro-unmute {
        padding: 0.8rem 1.25rem;
        font-size: 1.125rem;
    }

    .video-intro-unmute-icon {
        width: 26px;
        height: 26px;
    }
}

/* Depoimentos / O que estão falando */
.depoimentos-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.depoimentos-video-wrapper iframe,
.depoimentos-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Card vertical (vídeo em formato retrato) */
/* O próprio vídeo define a proporção: sem padding-bottom fixo e sem barras pretas */
.depoimentos-video-wrapper--vertical {
    max-width: 405px;
    padding-bottom: 0;
}

.depoimentos-video-wrapper--vertical video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
}

/* Subtítulo da seção de depoimentos */
.depoimentos-subtitle {
    text-align: center;
    max-width: 720px;
    margin: -30px auto 40px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-highlight);
}

/* Player principal da playlist */
.depoimentos-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.25rem;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #000;
}

.depoimentos-player-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Galeria de miniaturas para escolher o vídeo */
.depoimentos-thumbs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 6px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.depoimentos-thumbs::-webkit-scrollbar {
    height: 6px;
}

.depoimentos-thumbs::-webkit-scrollbar-thumb {
    background: rgba(242, 138, 128, 0.4);
    border-radius: 10px;
}

.dep-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 180px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: var(--color-surface);
    cursor: pointer;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dep-thumb-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.dep-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dep-thumb-title {
    display: block;
    padding: 8px 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

.dep-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.dep-thumb.active {
    border-color: var(--color-primary);
    box-shadow: 0 6px 18px rgba(242, 138, 128, 0.55);
}

.dep-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dep-thumb:hover .dep-thumb-play,
.dep-thumb.active .dep-thumb-play {
    opacity: 1;
}

@media (max-width: 768px) {
    .dep-thumb {
        width: 150px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("public/assets/background/Fundo Rosa Preto.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 500px;
    opacity: 0;
    animation: fadeInRight 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s forwards;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(242, 171, 155, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    margin-top: 20px;
    margin-bottom: 20px;
    animation: fadeInLeft 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-title .highlight-text {
    color: var(--color-text-highlight);
}

.slogan {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.hero-info {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 700px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.1s forwards;
}

/* Beneficios Section */
.beneficios-section {
    background-image: url("public/assets/imagens/imagensilustrativas1.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.beneficios-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

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

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.2);
}

.benefit-card h3 {
    color: var(--color-text-highlight);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Tickets Section */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

/* Animated rotating gradient border (adaptado da Identidade Visual Full Body) */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes ticket-gradient-rotate {
    to {
        --gradient-angle: 360deg;
    }
}

.ticket-card {
    /* cor de fundo interna do card */
    --card-bg: #ffffff;
    /* paleta do gradiente: vinho · rosé · rosé claro */
    --grad-primary: #693D39;
    --grad-secondary: #F28A80;
    --grad-accent: #FCE6E2;

    padding: 40px 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* borda transparente preenchida pelo conic-gradient animado */
    border: 2.5px solid transparent;
    background-color: transparent;
    background-image:
        linear-gradient(var(--card-bg), var(--card-bg)),
        conic-gradient(from var(--gradient-angle),
            var(--grad-primary) 0%,
            var(--grad-secondary) 37%,
            var(--grad-accent) 30%,
            var(--grad-secondary) 33%,
            var(--grad-primary) 40%,
            var(--grad-primary) 50%,
            var(--grad-secondary) 77%,
            var(--grad-accent) 80%,
            var(--grad-secondary) 83%,
            var(--grad-primary) 90%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: ticket-gradient-rotate 6s linear infinite;
    box-shadow: 0 4px 20px rgba(105, 61, 57, 0.12);
}

.ticket-card:hover,
.ticket-card.glow-active {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 50px rgba(242, 138, 128, 0.8);
}

@media (prefers-reduced-motion: reduce) {
    .ticket-card {
        animation: none;
    }
}

.ticket-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-text);
}

.ticket-benefits {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.ticket-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.ticket-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.ticket-card.featured {
    --card-bg: var(--color-neutral-white);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(242, 138, 128, 0.2);
}

.ticket-card.featured:hover,
.ticket-card.featured.glow-active {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(242, 138, 128, 0.9);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-medium-rose);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ticket-card.premium {
    /* Diamond: borda mais grossa, brilho do gradiente mais vivo e giro mais rápido */
    --card-bg: #FFF9F8;
    --grad-primary: #BF6B63;
    --grad-secondary: #F27979;
    --grad-accent: #FCE6E2;
    border-width: 3.5px;
    animation-duration: 4s;
    box-shadow: 0 6px 28px rgba(191, 107, 99, 0.22);
}

.ticket-card.premium h3 {
    color: var(--color-secondary-3);
}

/* Stacked Section */
.stacked-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.full-section {
    width: 100%;
}

.list-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.list-items li {
    background: var(--color-surface);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.08);
    font-weight: 500;
}

/* Interactive Fold */
.interactive-fold {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.05);
}

.fold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding-bottom: 10px;
}

.fold-header .section-title {
    margin-bottom: 0;
}

.toggle-btn {
    background: var(--gradient-medium-rose);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.4);
}

.fold-header:hover .toggle-btn {
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.6);
}

.fold-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.fold-content.active {
    transition: max-height 0.5s ease-in-out;
}

.fold-content>.section-subtitle {
    margin-top: 20px;
}

/* Info Grid (Location) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--color-surface);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.05);
}

.info-card h3 {
    color: var(--color-text-highlight);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--color-text);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.transport-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(242, 171, 155, 0.4);
}

.hotel-list ul {
    list-style: none;
}

.hotel-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
    padding-left: 15px;
    position: relative;
}

.hotel-list li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--color-neutral-dark-brown);
    background: var(--gradient-black);
    color: var(--color-neutral-white);
}

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

.footer-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-euvou-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.1);
}

.footer-euvou-btn:hover {
    background: var(--color-primary);
    color: var(--color-neutral-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 138, 128, 0.4);
    text-decoration: none;
}

.footer-mm-logo {
    height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-mm-logo:hover {
    opacity: 1;
}

.footer-links {
    flex: 1;
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-links p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .ticket-card.featured {
        transform: scale(1);
    }

    .ticket-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

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

    .hero-info {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 400px;
        margin-top: 40px;
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 10px;
    }

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

    .footer-logo,
    .footer-center,
    .footer-links {
        flex: none;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .feira-section .image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 25px;
    }

    .feira-section .grid-item {
        padding: 8px;
        border-radius: 12px;
        aspect-ratio: 1 / 1;
    }

    .feira-section .grid-item img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        margin-bottom: 0;
    }

    .feira-realizacao {
        margin: -10px auto 30px auto;
    }

    .realizacao-logo-destaque {
        padding: 15px 30px;
        max-width: 240px;
    }

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

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

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

/* Featured Networking Card */
.benefit-card.featured-networking {
    grid-column: 1 / -1;
    background: var(--gradient-medium-rose);
    color: var(--color-neutral-white);
    border: none;
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.4);
}

.benefit-card.featured-networking h3,
.benefit-card.featured-networking p {
    color: var(--color-neutral-white);
}

/* Ingressos Section Background */
.ingressos-section {
    background-image: url("public/assets/imagens/imagensilustrativas2.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.title-white {
    color: var(--color-neutral-white);
}

.title-white .highlight-text {
    color: var(--color-neutral-white);
}

/* Video Teaser Section */
.video-teaser-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
    transition: height 0.5s ease-in-out;
}

.video-teaser-section.expanded {
    height: 80vh;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 300px;
    pointer-events: none;
}

.video-teaser-section.expanded .video-container {
    pointer-events: auto;
    width: 100%;
    height: 100%;
    min-height: auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.video-overlay h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-medium-rose);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.4);
    transition: transform 0.3s ease;
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.6);
}

@media (max-width: 768px) {
    .video-overlay h2 {
        font-size: 2rem;
    }
}

/* Programação Section */
.programacao-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-lighter) 100%);
}

.programacao-subtitle {
    text-align: center;
    max-width: 640px;
    margin: -30px auto 48px;
    color: var(--color-secondary-3);
    font-size: 1.05rem;
    line-height: 1.5;
}

.agenda {
    max-width: 820px;
    margin: 0 auto;
}

/* Tabs */
.agenda-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.agenda-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 22px;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-neutral-white);
    color: var(--color-secondary-3);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 108px;
}

.agenda-tab:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.agenda-tab.active {
    background: var(--gradient-medium-rose);
    border-color: transparent;
    color: var(--color-neutral-white);
    box-shadow: 0 8px 22px rgba(242, 138, 128, 0.4);
}

.agenda-tab-day {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.85;
}

.agenda-tab-date {
    font-size: 1.15rem;
    font-weight: 800;
}

.agenda-tab.agenda-tab-diamond {
    border-color: var(--color-secondary-3);
    position: relative;
    overflow: hidden;
}

.agenda-tab.agenda-tab-diamond.active {
    background: var(--gradient-wine);
    box-shadow: 0 8px 22px rgba(191, 107, 99, 0.4);
}

.agenda-tab-exclusive {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-secondary-3);
    color: var(--color-neutral-white);
    padding: 3px 8px;
    border-radius: 12px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.agenda-tab.agenda-tab-diamond.active .agenda-tab-exclusive {
    background: var(--color-neutral-white);
    color: var(--color-secondary-3);
}

/* Panels + timeline */
.agenda-panel {
    display: none;
    position: relative;
    padding-left: 92px;
    animation: agendaFade 0.4s ease;
}

.agenda-panel.active {
    display: block;
}

/* vertical connecting line */
.agenda-panel::before {
    content: "";
    position: absolute;
    left: 78px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary-2));
    opacity: 0.55;
}

@keyframes agendaFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.agenda-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    margin-bottom: 14px;
    background: var(--color-neutral-white);
    border: 1px solid var(--color-neutral-light-rose);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(105, 61, 57, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agenda-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 26px rgba(191, 107, 99, 0.14);
    border-color: var(--color-border);
}

/* timeline dot */
.agenda-item::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-neutral-white);
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-neutral-very-light-rose);
}

.agenda-time {
    flex-shrink: 0;
    align-self: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-neutral-white);
    background: var(--gradient-wine);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Professor avatars */
.agenda-avatars {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
}

.agenda-avatars img {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--color-neutral-white);
    box-shadow: 0 3px 10px rgba(105, 61, 57, 0.2);
    background: var(--color-neutral-light-rose);
}

.agenda-avatars img+img {
    margin-left: -27px;
}

.agenda-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-talk {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
}

.agenda-speaker {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.agenda-live {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-neutral-white);
    background: var(--color-secondary-1);
    padding: 2px 8px;
    border-radius: 999px;
}

/* Intervalos / Almoço / Aberturas */
.agenda-break {
    background: transparent;
    border: 1px dashed var(--color-border);
    box-shadow: none;
    padding: 10px 20px;
    align-items: center;
}

.agenda-break:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-primary);
}

.agenda-break::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
    background: var(--color-neutral-very-light-rose);
    box-shadow: none;
    top: 50%;
    transform: translateY(-50%);
}

.agenda-break .agenda-time {
    background: var(--color-secondary-2);
}

.agenda-break-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary-3);
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .agenda-panel {
        padding-left: 0;
    }

    .agenda-panel::before {
        display: none;
    }

    .agenda-item::before {
        display: none;
    }

    .agenda-item {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }

    .agenda-time {
        align-self: flex-start;
        order: 1;
    }

    .agenda-avatars {
        order: 2;
    }

    .agenda-avatars img {
        width: 72px;
        height: 72px;
    }

    .agenda-content {
        order: 3;
        flex: 1 1 100%;
    }

    .agenda-break {
        flex-wrap: nowrap;
    }

    .agenda-break .agenda-content {
        flex: 1 1 auto;
    }

    .agenda-tab {
        min-width: 0;
        flex: 1 1 40%;
        padding: 10px 12px;
    }
}

/* Feira Comercial Section */
.feira-section {
    background-image: url("public/assets/imagens/imagensilustrativas3.JPG");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.feira-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

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

.feira-realizacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: -10px auto 40px auto;
    text-align: center;
}

.realizacao-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-neutral-dark-brown);
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0.9;
}

.realizacao-logo-destaque {
    background: var(--color-neutral-white);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    padding: 25px 50px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(242, 138, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.realizacao-logo-destaque:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(242, 138, 128, 0.3);
}

.realizacao-logo-destaque img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

/* Image Grids */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(242, 138, 128, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid-item:hover,
.grid-item.glow-active {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 138, 128, 0.2);
}

.grid-item img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.grid-item p {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
}

.expositor-item img {
    margin-bottom: 0;
}

/* ================================================
   FUTURISTIC PROFESSORES SECTION
   ================================================ */

/* Section base – dark futuristic background */
.professores-section {
    background: linear-gradient(175deg, #0c0a14 0%, #1a0e1e 35%, #12081a 70%, #0a0610 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

/* Animated background orbs */
.professores-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.professores-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: orbFloat 12s ease-in-out infinite;
}

.professores-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 138, 128, 0.6), transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.professores-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(191, 107, 99, 0.5), transparent 70%);
    bottom: 10%;
    right: -8%;
    animation-delay: -4s;
}

.professores-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(242, 171, 155, 0.4), transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-15px, 25px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.03);
    }
}

/* Section title – futuristic styling */
.professores-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.professores-label {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(242, 171, 155, 0.7);
    font-weight: 500;
}

.professores-highlight {
    color: #fff !important;
    font-size: 2.2rem;
    text-shadow: 0 0 40px rgba(242, 138, 128, 0.3);
    background: linear-gradient(135deg, #ffffff, #F2AB9B, #F28A80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Busca de professores */
.professores-search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 32px;
    z-index: 1;
}

.professores-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: rgba(242, 171, 155, 0.7);
    pointer-events: none;
}

.professores-search-input {
    width: 100%;
    padding: 14px 48px 14px 50px;
    border-radius: 999px;
    border: 1px solid rgba(242, 171, 155, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.professores-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.professores-search-input:focus {
    border-color: rgba(242, 138, 128, 0.7);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(242, 138, 128, 0.12);
}

.professores-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(242, 171, 155, 0.15);
    color: #F2AB9B;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.professores-search-clear:hover {
    background: rgba(242, 138, 128, 0.3);
}

.professores-search-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px;
    font-size: 1rem;
}

.prof-card.is-filtered {
    display: none !important;
}

/* Filtros por palco (abaixo da barra de busca) */
.professores-filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.prof-filtro-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(242, 171, 155, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.prof-filtro-btn:hover {
    border-color: rgba(242, 138, 128, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

.prof-filtro-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary-3));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(242, 138, 128, 0.35);
}

/* Grid – mobile-first 2 columns */
.professores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* Professor Card */
.prof-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.prof-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.prof-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.prof-card-inner:hover,
.prof-card-inner.glow-active {
    transform: translateY(-6px);
    border-color: rgba(242, 138, 128, 0.4);
    box-shadow:
        0 8px 32px rgba(242, 138, 128, 0.15),
        0 0 60px rgba(242, 138, 128, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prof-card-glow {
    display: none;
}

/* Image wrapper */
.prof-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.prof-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(12, 10, 20, 0.95) 0%,
            rgba(12, 10, 20, 0.4) 35%,
            rgba(12, 10, 20, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.prof-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease;
    filter: brightness(0.9) contrast(1.05);
}

/* Placeholder para professor ainda sem foto */
.prof-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #221a38 0%, #0c0a14 100%);
    color: rgba(255, 255, 255, 0.22);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.prof-card-inner:hover .prof-img-wrapper img,
.prof-card-inner.glow-active .prof-img-wrapper img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1.1);
}

/* Professor info overlay */
.prof-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    z-index: 2;
}

.prof-info h3 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    margin: 0;
}

/* Subtle decorative line under name */
.prof-info::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-bottom: 8px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.prof-card-inner:hover .prof-info::before,
.prof-card-inner.glow-active .prof-info::before {
    width: 48px;
}

/* Talk schedule block (below the image) */
.prof-talk {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 14px 16px;
    background: linear-gradient(180deg,
            rgba(18, 14, 26, 0.6) 0%,
            rgba(12, 10, 20, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prof-talk-slot {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prof-talk-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.prof-talk-stage {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #F2AB9B;
    border: 1px solid rgba(242, 171, 155, 0.35);
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

.prof-talk-time {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary-3));
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(242, 138, 128, 0.25);
}

.prof-talk-title {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    overflow-wrap: break-word;
}

/* ================================================
   RESPONSIVE – PROFESSORES
   ================================================ */

/* Tablets */
@media (min-width: 600px) {
    .professores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .professores-highlight {
        font-size: 2.5rem;
    }

    .prof-info h3 {
        font-size: 0.9rem;
    }

    .prof-info {
        padding: 18px 16px;
    }

    .prof-talk-title {
        font-size: 0.76rem;
    }

    .prof-talk-time {
        font-size: 0.7rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .professores-section {
        padding: 120px 0;
    }

    .professores-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .professores-highlight {
        font-size: 3rem;
    }

    .prof-info h3 {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .prof-info {
        padding: 20px 18px;
    }

    .prof-talk {
        padding: 16px 16px 18px;
    }

    .prof-talk-title {
        font-size: 0.8rem;
    }

    .professores-orb-1 {
        width: 600px;
        height: 600px;
    }

    .professores-orb-2 {
        width: 500px;
        height: 500px;
    }

    .professores-orb-3 {
        width: 350px;
        height: 350px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .professores-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 28px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .professores-grid {
        gap: 12px;
    }

    .prof-info h3 {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .prof-info {
        padding: 12px 10px;
    }

    .professores-highlight {
        font-size: 1.6rem;
    }

    .professores-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .professores-orb {
        animation: none;
    }

    .prof-card-glow {
        animation: none;
    }

    .prof-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .prof-card-inner,
    .prof-img-wrapper img,
    .prof-info::before {
        transition: none;
    }
}

/* ================================================
   EU VOU SECTION
   ================================================ */
.eu-vou-section {
    background: linear-gradient(135deg, var(--color-background-lighter) 0%, var(--color-neutral-very-light-rose) 100%);
    position: relative;
    overflow: hidden;
}

.eu-vou-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-neutral-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(242, 138, 128, 0.1);
    position: relative;
    z-index: 2;
}

.eu-vou-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
}

.eu-vou-link-container {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eu-vou-subtitle {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-neutral-white);
    background: var(--gradient-wine);
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(105, 61, 57, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0;
}

.eu-vou-link-container:hover {
    transform: scale(1.05);
}

.eu-vou-link-container:hover .eu-vou-subtitle {
    background: var(--gradient-medium-rose);
    box-shadow: 0 10px 25px rgba(242, 121, 121, 0.5);
}

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

    .eu-vou-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .eu-vou-subtitle {
        font-size: 1.2rem;
        padding: 12px 28px;
    }
}

/* Accreditation Logos in Ticket Section */
.tickets-accreditation {
    margin-top: 50px;
    text-align: center;
}

.accreditation-label {
    color: var(--color-neutral-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
}

.accreditation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 16px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accreditation-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.accreditation-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .accreditation-container {
        padding: 16px 20px;
        gap: 16px;
        max-width: 320px;
    }

    .accreditation-logo {
        height: 45px;
    }

    .accreditation-divider {
        height: 30px;
    }
}