/* ===========================
   UNIMED SANS FONT
   =========================== */
@font-face {
    font-family: 'Unimed Sans';
    src: url('./fonts/Unimed_SANS/unimedsans-light-webfont.woff2') format('woff2'),
         url('./fonts/Unimed_SANS/unimedsans-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unimed Sans';
    src: url('./fonts/Unimed_SANS/unimedsans-book-webfont.woff2') format('woff2'),
         url('./fonts/Unimed_SANS/unimedsans-book-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unimed Sans';
    src: url('./fonts/Unimed_SANS/unimedsans-regular-webfont.woff2') format('woff2'),
         url('./fonts/Unimed_SANS/unimedsans-regular-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unimed Sans';
    src: url('./fonts/Unimed_SANS/unimedsans-bold-webfont.woff2') format('woff2'),
         url('./fonts/Unimed_SANS/unimedsans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    /* Colors */
    --verde-principal: #00A859;
    --verde-secundario: #4CAF4F;
    --verde-claro: #B8E6C1;
    --azul-petroleo: #1B4D4D;
    --verde-escuro: #003D1A;
    --cinza-claro: #F8F9FA;
    --branco: #FFFFFF;
    --cinza-texto: #333333;
    --cinza-suave: #666666;
    
    /* Typography */
    --font-family: 'Unimed Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-xxl: 80px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-button: 25px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--cinza-texto);
    background-color: var(--branco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--verde-escuro);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--azul-petroleo);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--verde-principal);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .palestrantes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition-normal);
    border-radius: var(--radius-button);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-secundario) 100%);
    color: var(--branco);
    padding: 16px 32px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
    filter: brightness(1.1);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-secundario) 100%);
    color: var(--branco);
    padding: 10px 24px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 168, 89, 0.25);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-disabled {
    background: #999999 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    opacity: 0.7;
    pointer-events: none;
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--branco);
    padding: 16px 32px;
    font-size: 16px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #22c55e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    flex-shrink: 0;
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--cinza-texto);
    padding: 8px 12px;
    border-radius: 20px;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--verde-principal);
    background: rgba(0, 168, 89, 0.1);
}

.nav-link.active {
    color: var(--verde-principal);
    background: rgba(0, 168, 89, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--verde-principal);
    border-radius: 2px;
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--verde-principal);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.mobile-nav {
    padding: 48px 32px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-list {
    margin-bottom: 48px;
}

.mobile-nav-link {
    display: block;
    padding: 20px 16px;
    font-size: 19px;
    font-weight: 500;
    color: var(--cinza-texto);
    border-bottom: 1px solid rgba(0, 168, 89, 0.15);
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--verde-principal);
    background: rgba(0, 168, 89, 0.08);
    padding-left: 24px;
}

.mobile-nav-link.active {
    color: var(--verde-principal);
    background: rgba(0, 168, 89, 0.12);
    border-left: 4px solid var(--verde-principal);
    padding-left: 20px;
}

.mobile-cta {
    width: 100%;
    font-size: 16px;
    padding: 18px 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===========================
   HERO ASSETS & ANIMATIONS
   =========================== */

/* Hero Text Sequential Animations */
.animate-text-1,
.animate-text-2,
.animate-text-3,
.animate-text-4 {
    opacity: 0;
    transform: translateY(30px);
}

.animate-text-1 {
    animation: slideInUp 0.8s ease-out 0.5s forwards;
}

.animate-text-2 {
    animation: slideInUp 0.8s ease-out 1s forwards;
}

.animate-text-3 {
    animation: slideInUp 0.8s ease-out 1.5s forwards;
}

.animate-text-4 {
    animation: slideInUp 0.8s ease-out 2s forwards;
}
.hero-asset {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.hero-asset img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Asset 1: Grid de pontos verdes (top right) */
.hero-asset-1 {
    top: 5%;
    right: 5%;
    width: 180px;
    height: 180px;
    opacity: 0.4;
    animation: fadeInFloat 2s ease-out 0.5s forwards, float-continuous-slow 6s ease-in-out 2.5s infinite;
}

/* Asset 2: Linha diagonal fina (center left) */
.hero-asset-2 {
    top: 40%;
    left: 2%;
    width: 120px;
    height: 120px;
    opacity: 0.3;
    animation: slideInLeft 1.5s ease-out 1s forwards;
}

/* Asset 3: Grid de pontos azuis (bottom right) */
.hero-asset-3 {
    bottom: 10%;
    right: 15%;
    width: 100px;
    height: 100px;
    opacity: 0.35;
    animation: fadeInScale 1.8s ease-out 1.5s forwards;
}

/* Asset 4: Linha diagonal com gradiente (top left) */
.hero-asset-4 {
    top: 8%;
    left: 3%;
    width: 140px;
    height: 140px;
    opacity: 0.25;
    animation: rotateIn 2s ease-out 0.8s forwards;
}

/* Asset 5: Linha diagonal espessa (center right) */
.hero-asset-5 {
    top: 30%;
    right: 8%;
    width: 90px;
    height: 90px;
    opacity: 0.4;
    animation: bounceIn 1.5s ease-out 2s forwards;
}

/* Asset 6: Linha simples (bottom left) */
.hero-asset-6 {
    bottom: 20%;
    left: 5%;
    width: 110px;
    height: 110px;
    opacity: 0.3;
    animation: drawLine 2.5s ease-out 1.2s forwards;
}

/* Asset 7: Mais elementos (far right) */
.hero-asset-7 {
    top: 60%;
    right: 2%;
    width: 80px;
    height: 80px;
    opacity: 0.25;
    animation: fadeInFloat 2s ease-out 2.5s forwards;
}

/* Asset 8: Elemento adicional (far left) */
.hero-asset-8 {
    bottom: 5%;
    left: 12%;
    width: 70px;
    height: 70px;
    opacity: 0.3;
    animation: slideInBottom 1.5s ease-out 3s forwards;
}

/* Asset 9: Losango grande (bottom left corner) - apenas 40% visível */
.hero-asset-9 {
    bottom: -8%;
    left: -8%;
    width: 20vw;
    height: 20vw;
    opacity: 0.15;
    transform: rotate(45deg);
    animation: scaleInLarge 2.5s ease-out 0.3s forwards;
}

/* Floating Animations */
.floating-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.floating-medium {
    animation: float-medium 6s ease-in-out infinite;
}

.floating-fast {
    animation: float-fast 4s ease-in-out infinite;
}

/* Line Drawing Animation */
.animated-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-in-out forwards, pulse-line 2s ease-in-out infinite 3s;
}

.animated-gradient-line {
    opacity: 0;
    animation: fadeInScale 2s ease-out forwards 1s, rotate-gradient 10s linear infinite 3s;
}

/* Dots Animation */
.dots-grid path {
    opacity: 0;
    animation: fadeInDots 0.5s ease-out forwards;
}

.dots-grid path:nth-child(1) { animation-delay: 0.1s; }
.dots-grid path:nth-child(2) { animation-delay: 0.2s; }
.dots-grid path:nth-child(3) { animation-delay: 0.3s; }
.dots-grid path:nth-child(4) { animation-delay: 0.4s; }

/* Logo Float Animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(2deg);
    }
    50% {
        transform: translate(-5px, -10px) rotate(-1deg);
    }
    75% {
        transform: translate(-15px, -5px) rotate(1deg);
    }
}

@keyframes float-medium {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-12px, -8px) rotate(-2deg);
    }
    66% {
        transform: translate(8px, -12px) rotate(1deg);
    }
}

@keyframes float-fast {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-8px, -15px) rotate(3deg);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.8;
        transform: scale(1);
    }
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ensure rotating elements don't get clipped */
.asset-5,
.floating-fast {
    transform-origin: center center;
    will-change: transform;
}

@keyframes fadeInDots {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Entrance animations for new assets */
.entrance-fade {
    opacity: 0;
    animation: entranceFade 1.5s ease-out forwards;
}

.entrance-fade:nth-child(1) { animation-delay: 0.2s; }
.entrance-fade:nth-child(2) { animation-delay: 0.4s; }
.entrance-fade:nth-child(3) { animation-delay: 0.6s; }
.entrance-fade:nth-child(4) { animation-delay: 0.8s; }
.entrance-fade:nth-child(5) { animation-delay: 1.0s; }
.entrance-fade:nth-child(6) { animation-delay: 1.2s; }
.entrance-fade:nth-child(7) { animation-delay: 1.4s; }
.entrance-fade:nth-child(8) { animation-delay: 1.6s; }

@keyframes entranceFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }
}

/* Corner-specific entrance animations */
.corner-top-left.entrance-fade {
    animation: entranceSlideTopLeft 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

.corner-top-right.entrance-fade {
    animation: entranceSlideTopRight 1.5s ease-out forwards;
    animation-delay: 1.0s;
}

.corner-bottom-left.entrance-fade {
    animation: entranceSlideBottomLeft 1.5s ease-out forwards;
    animation-delay: 1.2s;
}

.corner-bottom-right.entrance-fade {
    animation: entranceSlideBottomRight 1.5s ease-out forwards;
    animation-delay: 1.4s;
}

@keyframes entranceSlideTopLeft {
    from {
        opacity: 0;
        transform: translate(-50px, -50px) rotate(-45deg) scale(0.5);
    }
    to {
        opacity: 0.4;
        transform: translate(0, 0) rotate(-45deg) scale(1);
    }
}

@keyframes entranceSlideTopRight {
    from {
        opacity: 0;
        transform: translate(50px, -50px) rotate(45deg) scale(0.5);
    }
    to {
        opacity: 0.3;
        transform: translate(0, 0) rotate(45deg) scale(1);
    }
}

@keyframes entranceSlideBottomLeft {
    from {
        opacity: 0;
        transform: translate(-50px, 50px) scale(0.5);
    }
    to {
        opacity: 0.35;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes entranceSlideBottomRight {
    from {
        opacity: 0;
        transform: translate(50px, 50px) rotate(90deg) scale(0.5);
    }
    to {
        opacity: 0.4;
        transform: translate(0, 0) rotate(90deg) scale(1);
    }
}

/* New Hero Asset Animations */
@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 0.4;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg);
    }
    100% {
        opacity: 0.3;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.35;
        transform: scale(1);
    }
}

@keyframes scaleInLarge {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(35deg);
    }
    60% {
        opacity: 0.1;
        transform: scale(1.05) rotate(47deg);
    }
    100% {
        opacity: 0.15;
        transform: scale(1) rotate(45deg);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 0.25;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 0.4;
        transform: scale(1) translateY(0);
    }
}

@keyframes drawLine {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-50%);
    }
    50% {
        opacity: 0.15;
        transform: scaleX(0.7) translateX(-25%);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(1) translateX(0);
    }
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.7);
    }
    100% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }
}

/* Continuous floating animations for some assets */
.floating-slow {
    animation: float-continuous-slow 6s ease-in-out infinite;
}

.floating-medium {
    animation: float-continuous-medium 4s ease-in-out infinite;
}

.floating-fast {
    animation: float-continuous-fast 3s ease-in-out infinite;
}

@keyframes float-continuous-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes float-continuous-medium {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes float-continuous-fast {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Hero Background Image */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) brightness(0.9) opacity(0.35);
    transform: scale(1.1);
}

/* Medical Pattern Overlay - Removed */
.medical-pattern {
    display: none;
}

/* Countdown Banner */
.countdown-banner {
    position: absolute;
    top: 90px;
    right: 40px;
    background: rgba(0, 168, 89, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: slideInRight 0.8s ease-out 0.5s both;
}

.countdown-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.countdown-label {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.countdown-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.5;
}

/* Edition Badge */
.edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-secundario));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
}

.badge-number {
    font-size: 20px;
    font-weight: 700;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
}

/* Event Info Cards */
.event-info-cards {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 89, 0.1);
    overflow: hidden;
    max-width: fit-content;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(0, 168, 89, 0.1);
}

.info-card:last-child {
    border-right: none;
}

.info-card:hover {
    background: rgba(0, 168, 89, 0.05);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 168, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-card-label {
    font-size: 11px;
    color: var(--cinza-suave);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.info-card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--azul-petroleo);
    line-height: 1.1;
}

.info-card-detail {
    font-size: 13px;
    color: var(--verde-principal);
    font-weight: 500;
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 168, 89, 0.5);
    }
}

.cta-note {
    font-size: 14px;
    color: var(--cinza-suave);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cinza-suave);
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Event Logo Wrapper */
.event-logo-wrapper {
    position: relative;
    text-align: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* Event Stats */
.event-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 168, 89, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--verde-principal);
    line-height: 1;
    margin-bottom: 8px;
}

.event-stats .stat-label {
    font-size: 14px;
    color: var(--cinza-texto);
    font-weight: 500;
}

/* Animation Classes */
.animate-badge {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: badgeIn 0.6s ease-out 0.3s forwards;
}

@keyframes badgeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-text-5 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 2.5s forwards;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dots-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.3;
}

.dots-1 {
    top: 10%;
    right: 10%;
}

.organic-line {
    position: absolute;
    opacity: 0.2;
}

.line-1 {
    top: 20%;
    left: 5%;
    width: 200px;
}

.line-2 {
    bottom: 30%;
    right: 8%;
    width: 150px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    text-align: left;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.event-logo-container {
    position: relative;
    animation: logoFloat 4s ease-in-out infinite;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-logo-svg {
    max-width: 90%;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    display: block;
    transform: scale(0.9);
    transform-origin: center;
}

/* Fix para SVG fonts */
.event-logo-svg .cls-1, 
.event-logo-svg .cls-2, 
.event-logo-svg .cls-3, 
.event-logo-svg .cls-4, 
.event-logo-svg .cls-5, 
.event-logo-svg .cls-6 {
    font-family: 'Unimed Sans', Arial, sans-serif !important;
}

/* Fallback logo styles */
.event-logo-fallback {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--azul-petroleo);
}

.fallback-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-number-fallback {
    font-size: 80px;
    font-weight: 700;
    color: var(--azul-petroleo);
    line-height: 1;
}

.logo-text-fallback {
    text-align: left;
}

.logo-simposio-fallback {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--azul-petroleo);
    letter-spacing: 2px;
}

.logo-subtitle-fallback {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--verde-principal);
    font-style: italic;
}


.hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cinza-suave);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 600;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    color: var(--cinza-texto);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
        order: 2;
    }
    
    .hero-left .info-item {
        justify-content: center;
    }
    
    .hero-right {
        order: 1;
    }
    
    .event-logo-svg {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        gap: 30px;
        min-height: auto;
    }
    
    .hero-left {
        padding: 20px 0;
    }
    
    .event-logo-svg {
        max-width: 500px;
        width: 100% !important;
        transform: scale(1.0) !important;
    }
    
    /* Mobile Countdown */
    .countdown-banner {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 12px 16px;
        border-radius: 16px;
    }
    
    .countdown-content {
        justify-content: center;
        gap: 12px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    /* Mobile Info Cards */
    .event-info-cards {
        flex-direction: column;
        max-width: 100%;
    }
    
    .info-card {
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 168, 89, 0.1);
        justify-content: flex-start;
    }
    
    .info-card:last-child {
        border-bottom: none;
    }
    
    .info-card-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile CTA */
    .hero-cta-wrapper {
        align-items: stretch;
        width: 100%;
    }
    
    .btn-glow {
        justify-content: center;
        width: 100%;
    }
    
    /* Mobile Stats */
    .event-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .event-stats .stat-label {
        font-size: 12px;
        color: var(--cinza-texto);
        font-weight: 500;
    }
    
    .hero-subtitle {
        font-weight: 400;
    }
    
    /* Mobile Hero Assets - Reduced and Repositioned */
    .hero-asset-1 {
        width: 100px;
        height: 100px;
        top: 8%;
        right: 5%;
        opacity: 0.25;
    }
    
    .hero-asset-2 {
        width: 80px;
        height: 80px;
        top: 45%;
        left: 5%;
        opacity: 0.2;
    }
    
    .hero-asset-3 {
        width: 70px;
        height: 70px;
        bottom: 15%;
        right: 8%;
        opacity: 0.25;
    }
    
    .hero-asset-4 {
        width: 90px;
        height: 90px;
        top: 12%;
        left: 8%;
        opacity: 0.15;
    }
    
    .hero-asset-5 {
        width: 60px;
        height: 60px;
        top: 35%;
        right: 12%;
        opacity: 0.3;
    }
    
    .hero-asset-6 {
        width: 75px;
        height: 75px;
        bottom: 25%;
        left: 8%;
        opacity: 0.2;
    }
    
    .hero-asset-7 {
        width: 50px;
        height: 50px;
        top: 65%;
        right: 5%;
        opacity: 0.2;
    }
    
    .hero-asset-8 {
        width: 55px;
        height: 55px;
        bottom: 8%;
        left: 15%;
        opacity: 0.25;
    }
    
    .hero-asset-9 {
        width: 30vw;
        height: 30vw;
        bottom: -10%;
        left: -10%;
        opacity: 0.1;
        transform: rotate(45deg);
    }
    
    /* Corner assets responsive */
    .corner-top-left {
        width: 60px;
        height: 60px;
        top: -10px;
        left: -10px;
    }
    
    .corner-top-right {
        width: 50px;
        height: 50px;
        top: -15px;
        right: -15px;
    }
    
    .corner-bottom-left {
        width: 55px;
        height: 55px;
        bottom: -10px;
        left: -10px;
    }
    
    .corner-bottom-right {
        width: 65px;
        height: 65px;
        bottom: -15px;
        right: -15px;
    }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: rgba(184, 230, 193, 0.05);
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.section-background .asset-3 {
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    opacity: 0.4;
}

.section-background .asset-4 {
    top: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    opacity: 0.3;
}

.section-background .asset-6 {
    bottom: 20%;
    left: 10%;
    width: 120px;
    height: 120px;
    opacity: 0.25;
}

.section-animated-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawSectionLine 4s ease-in-out forwards, pulse-section-line 3s ease-in-out infinite 4s;
}

@keyframes drawSectionLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse-section-line {
    0%, 100% {
        stroke-opacity: 0.2;
    }
    50% {
        stroke-opacity: 0.5;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--verde-principal);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--cinza-suave);
    margin: 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Sobre Section Specific Styles */
.sobre-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-intro {
    text-align: center;
    margin-bottom: 60px;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--verde-principal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 20px;
    color: var(--azul-petroleo);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 16px;
    color: var(--cinza-suave);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.sobre-stats {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-secundario));
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.sobre-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

/* Quote Section */
.highlight-quote {
    background: rgba(0, 168, 89, 0.05);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    text-align: center;
}

.quote-icon {
    margin-bottom: 24px;
}

.highlight-text {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--azul-petroleo);
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 800px;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--verde-principal);
}

.author-title {
    font-size: 14px;
    color: var(--cinza-suave);
}

/* Tema Section */
.tema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.tema-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: left;
}

.tema-card-title {
    color: var(--verde-principal);
    margin-bottom: 16px;
}

.tema-footer {
    font-style: italic;
    color: var(--cinza-suave);
    margin-top: 40px;
}

/* Programação Section Timeline */
.section-programacao {
    background: var(--cinza-claro);
    position: relative;
}

.timeline-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 89, 0.1) 20%, rgba(0, 168, 89, 0.1) 80%, transparent 100%);
    z-index: 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: var(--verde-principal);
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--verde-principal);
    z-index: 1;
}

.timeline-marker svg {
    width: 24px;
    height: 24px;
    color: var(--verde-principal);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
    text-align: right;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--verde-principal);
}

.timeline-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 18px;
    color: var(--azul-petroleo);
    margin-bottom: 4px;
    font-weight: 600;
}

.timeline-description {
    font-size: 14px;
    color: var(--cinza-suave);
    margin: 0 0 12px;
}

.timeline-moderators {
    font-size: 13px;
    color: var(--verde-principal);
    font-style: italic;
    margin: 0 0 12px;
    font-weight: 500;
}

.timeline-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 168, 89, 0.1);
    color: var(--verde-principal);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.timeline-tag-featured {
    background: var(--verde-principal);
    color: white;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--cinza-suave);
}

.timeline-item:nth-child(odd) .timeline-duration {
    justify-content: flex-end;
}

/* Timeline Highlight Items */
.timeline-highlight .timeline-marker {
    width: 56px;
    height: 56px;
    border-width: 3px;
    background: var(--verde-principal);
}

.timeline-highlight .timeline-marker svg {
    color: white;
}

.timeline-highlight .timeline-content {
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.05) 0%, rgba(184, 230, 193, 0.1) 100%);
    border-color: var(--verde-principal);
}

/* Timeline End Item */
.timeline-end .timeline-marker {
    background: var(--azul-petroleo);
    border-color: var(--azul-petroleo);
}

.timeline-end .timeline-marker svg {
    color: white;
}

/* Download Section */
.programacao-download {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.programacao-download p {
    font-size: 18px;
    color: var(--cinza-texto);
    margin-bottom: 20px;
}

.btn-secondary {
    background: transparent;
    color: var(--verde-principal);
    border: 2px solid var(--verde-principal);
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--verde-principal);
    color: white;
}

/* Palestrantes Section */
.palestrantes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 750px;
    margin: 60px auto 0;
    padding: 0;
}

.palestrante-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-top: 4px solid var(--verde-principal);
    width: 100%;
}

.palestrante-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.15);
}

.palestrante-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    background: #f8f9fa; /* Fundo neutro claro */
}

.palestrante-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Preenche todo o espaço */
    object-position: center 20%; /* Foca na parte superior (cabeça/rosto) */
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
}

.palestrante-card:hover .palestrante-image img {
    transform: scale(1.05);
}

.image-gradient {
    display: none;
}

/* Estilo para placeholder de palestrante */
.palestrante-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.palestrante-placeholder .placeholder-icon {
    width: 150px;
    height: 150px;
    opacity: 0.8;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.carousel-prev,
.carousel-next {
    pointer-events: all;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--verde-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--verde-principal);
    color: white;
    transform: scale(1.1);
}

.carousel-prev {
    margin-left: -24px;
}

.carousel-next {
    margin-right: -24px;
}

/* Show partial card on desktop */
@media (min-width: 1024px) {
    .palestrantes-carousel {
        padding-right: 100px;
    }
}

/* Grid responsivo para palestrantes */
@media (max-width: 1024px) {
    .palestrantes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .palestrantes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.palestrante-info {
    padding: 20px 16px;
    text-align: left;
}

.palestrante-info h3 {
    color: var(--azul-petroleo);
    margin-bottom: 6px;
    font-size: 18px;
}

.palestrante-info h4 {
    color: var(--verde-principal);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.palestrante-info p {
    color: var(--cinza-suave);
    font-size: 13px;
    line-height: 1.5;
}

/* Inscrições Section */
.inscricoes-content {
    text-align: center;
}

.inscricoes-exclusivo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 16px;
}

.inscricoes-vagas {
    font-size: 1.125rem;
    color: var(--cinza-suave);
    margin-bottom: 40px;
}

.beneficios {
    background: rgba(0, 168, 89, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
}

.beneficios h3 {
    margin-bottom: 24px;
}

.beneficios-list {
    text-align: left;
    font-size: 18px;
}

.beneficios-list li {
    margin-bottom: 12px;
    color: var(--cinza-texto);
}

/* Dúvidas Section */
.section-duvidas .section-content {
    max-width: 600px;
}

.section-duvidas p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--azul-petroleo);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    /* Logo já possui texto branco, não precisa de filtro */
}

.footer-info h4,
.footer-patrocinadores h4 {
    margin-bottom: 16px;
    color: var(--verde-claro);
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.patrocinadores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.patrocinador-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .sobre-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 12px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    /* Mobile Sobre */
    .sobre-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .sobre-stats {
        padding: 40px 24px;
        margin-bottom: 40px;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .highlight-quote {
        padding: 32px 24px;
    }
    
    .highlight-text {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
    
    .quote-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 20px;
    }
    
    /* Mobile Timeline */
    .timeline-container {
        padding: 20px 0 20px 60px;
    }
    
    .timeline-line {
        left: 30px;
        transform: translateX(0);
        top: 50px;
        bottom: 50px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding: 16px 0;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-highlight .timeline-marker {
        width: 48px;
        height: 48px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding: 20px;
    }
    
    .timeline-time {
        font-size: 20px;
    }
    
    .timeline-title {
        font-size: 16px;
    }
    
    .timeline-description {
        font-size: 13px;
    }
    
    .timeline-duration {
        justify-content: flex-start !important;
    }
    
    .programacao-download {
        padding: 32px 20px;
        margin-top: 40px;
    }
    
    .programacao-download p {
        font-size: 16px;
        padding: 20px;
    }
    
    .programacao-item .time {
        width: auto;
    }
    
    .tema-grid {
        grid-template-columns: 1fr;
    }
    
    /* Removed horizontal scroll - now using simple 1-column grid for 2 speakers */

    .palestrante-image {
        height: 350px;
    }
    
    .beneficios {
        padding: 32px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .patrocinadores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in {
    animation: slideIn 0.6s ease forwards;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading shimmer effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stagger-animation.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.active > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-animation.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ===========================
   UTILITIES
   =========================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--verde-principal);
    outline-offset: 4px;
}

/* Scroll Padding for Anchor Links */
html {
    scroll-padding-top: 100px;
}

/* Print Styles */
@media print {
    header,
    footer,
    .btn,
    .decorative-elements {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ===========================
   CUSTOMIZATIONS
   =========================== */

/* Logo do desktop maior */
@media (min-width: 1024px) {
    .unimed-logo {
        width: 150px !important;
        height: auto;
    }
    
    /* Logo do evento maior no desktop */
    .event-logo-container {
        max-width: 500px !important;
    }
    
    .event-logo-svg {
        max-width: 640px !important;
        transform: scale(1.0);
        transform-origin: center;
    }
    
    /* Fallback logo maior também */
    .logo-number-fallback {
        font-size: 120px !important;
    }
    
    .logo-simposio-fallback {
        font-size: 48px !important;
    }
    
    .logo-subtitle-fallback {
        font-size: 32px !important;
    }
}

/* Layout de duas colunas para o highlight-quote */
.highlight-quote-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.highlight-quote-image {
    flex: 0 0 250px;
}

.highlight-quote-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.highlight-quote-text {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .highlight-quote-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-quote-image {
        flex: none;
        width: 200px;
        margin: 0 auto;
    }
    
    .highlight-quote-text {
        text-align: center;
    }
}

/* ===========================
   INICIATIVAS DE SUCESSO
   =========================== */

.section-iniciativas {
    background: var(--branco);
    padding: 80px 0;
}

.iniciativas-content {
    max-width: 900px;
    margin: 0 auto;
}

.iniciativas-intro {
    margin-bottom: 48px;
}

.iniciativas-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--cinza-texto);
    margin-bottom: 32px;
    text-align: center;
}

.iniciativas-cta-box {
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.08), rgba(76, 175, 79, 0.08));
    border-left: 4px solid var(--verde-principal);
    border-radius: 16px;
    padding: 32px 40px;
    margin-top: 32px;
}

.iniciativas-subtitle {
    color: var(--verde-principal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.iniciativas-cta-box p {
    color: var(--cinza-texto);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Cronograma Card */
.cronograma-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 168, 89, 0.15);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.cronograma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-principal) 0%, var(--verde-secundario) 100%);
}

.cronograma-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 3px solid rgba(0, 168, 89, 0.15);
}

.cronograma-header svg {
    color: var(--verde-principal);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cronograma-header h3 {
    color: var(--azul-petroleo);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.cronograma-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cronograma-item {
    display: flex;
    gap: 32px;
    padding: 24px 28px;
    border-radius: 16px;
    background: white;
    border: 2px solid rgba(0, 168, 89, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cronograma-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--verde-principal);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cronograma-item:hover::before {
    opacity: 1;
}

.cronograma-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.12);
    border-color: rgba(0, 168, 89, 0.25);
    background: rgba(0, 168, 89, 0.02);
}

.cronograma-date {
    min-width: 200px;
    font-weight: 700;
    color: var(--verde-principal);
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cronograma-date::before {
    content: '📅';
    font-size: 1.2rem;
}

.cronograma-desc {
    color: var(--cinza-texto);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.cronograma-highlight {
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.08), rgba(76, 175, 79, 0.08));
    border: 3px solid var(--verde-principal);
    padding: 28px 32px !important;
    box-shadow: 0 12px 28px rgba(0, 168, 89, 0.2);
    position: relative;
}

.cronograma-highlight::before {
    opacity: 1;
    width: 6px;
}

.cronograma-highlight .cronograma-date {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--azul-petroleo);
}

.cronograma-highlight .cronograma-date::before {
    content: '🎯';
}

.cronograma-highlight .cronograma-desc {
    font-weight: 600;
    color: var(--azul-petroleo);
}

/* Footer da seção */
.iniciativas-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 2px solid var(--cinza-claro);
}

.exclusivo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 77, 77, 0.08);
    color: var(--azul-petroleo);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(27, 77, 77, 0.2);
}

.exclusivo-badge svg {
    flex-shrink: 0;
    color: var(--azul-petroleo);
}

.iniciativas-footer .btn {
    gap: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-iniciativas {
        padding: 60px 0;
    }

    .iniciativas-cta-box {
        padding: 24px 24px;
    }

    .iniciativas-subtitle {
        font-size: 1.25rem;
    }

    .cronograma-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .cronograma-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
        gap: 12px;
    }

    .cronograma-header svg {
        width: 28px;
        height: 28px;
    }

    .cronograma-header h3 {
        font-size: 1.5rem;
    }

    .cronograma-list {
        gap: 12px;
    }

    .cronograma-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px 20px;
        border-radius: 12px;
    }

    .cronograma-item:hover {
        transform: translateX(4px);
    }

    .cronograma-date {
        min-width: auto;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .cronograma-date::before {
        font-size: 1rem;
    }

    .cronograma-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cronograma-highlight {
        padding: 24px 20px !important;
    }

    .cronograma-highlight::after {
        top: 12px;
        right: 12px;
        font-size: 1.2rem;
    }

    .cronograma-highlight .cronograma-date {
        font-size: 1rem;
    }

    .exclusivo-badge {
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Seção de Patrocinadores - Carrossel Infinito */
.section-patrocinadores {
    background: var(--cinza-claro);
    padding: 60px 0;
}

.section-patrocinadores .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.apoio-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.apoio-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.apoio-logo:hover {
    transform: scale(1.05);
}

/* Cards de palestrantes expandíveis */
.palestrante-card {
    position: relative;
    cursor: pointer;
}

.palestrante-info {
    position: relative;
    overflow: hidden;
}

.palestrante-info p {
    max-height: 120px; /* Altura inicial colapsada */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease; /* Transição mais suave */
}

.palestrante-info p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.palestrante-card.expanded .palestrante-info p {
    max-height: 1000px; /* Aumentado para comportar textos mais longos */
}

.palestrante-card.expanded .palestrante-info p::after {
    opacity: 0;
}

.palestrante-card::after {
    content: 'Clique para ler mais';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: var(--verde-principal);
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.palestrante-card.expanded::after {
    content: 'Clique para recolher';
}

/* No desktop, mostra texto diferente */
@media (min-width: 769px) {
    .palestrante-card:first-child::after {
        content: 'Clique para expandir todos';
    }
    
    .palestrante-card.expanded:first-child::after {
        content: 'Clique para recolher todos';
    }
}

@media (hover: hover) {
    .palestrante-card:hover::after {
        opacity: 1;
    }
}

/* Remoção dos event-stats da hero */
.event-stats {
    display: none;
}

/* ===========================
   RESPONSIVIDADE PATROCINADORES
   =========================== */
@media (max-width: 768px) {
    .apoio-logo-container {
        padding: 30px 0;
    }

    .apoio-logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .apoio-logo {
        max-width: 280px;
    }
}