/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    padding: 0.75rem 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
    background-color: transparent;
    transition: all 0.5s ease;
    animation: fadeInDown 0.8s ease-out both;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 5rem;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
}

header.scrolled nav{
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    backdrop-filter: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(0, 86, 224);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
    left: 50%;
}

.nav-link.active:after{
    width: 100%;
    left: 50%;
}

nav ul li a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

header.scrolled nav ul li a {
    color: #333;
}

header.scrolled nav ul li a::after {
    background-color: #243a9c;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* Melhorias no botão */
.btn-nav {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    color: white;
    text-decoration: none;
    border-radius: 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 86, 224, 0.3);
    margin-left: 2rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 224, 0.4);
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
header.scrolled .menu-toggle i {
    color: #243a9c;
}

.menu-toggle:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0% {
        transform: scale(0.1, 0.1) translate(-50%, -50%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(20, 20) translate(-50%, -50%);
        opacity: 0;
    }
}


/* Mobile Header Redesign */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 86, 224, 0);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0);
        transition: all 0.3s ease;
    }
    
    header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(0, 86, 224, 0.1);
        padding: 0 1rem;
    }
    
    /* Logo Mobile */
    .logo {
        flex: 1;
        text-align: left;
    }
    
    .logo a {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    header.scrolled .logo a {
        color: #243a9c;
    }
    
    /* Esconder navegação desktop */
    nav {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Menu Toggle Redesenhado */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(0, 86, 224, 0.3);
    }
    
    .menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 86, 224, 0.4);
    }
    
    /* Ícone hambúrguer animado */
    .menu-toggle::before,
    .menu-toggle::after,
    .menu-toggle i {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle::before {
        transform: translateY(-6px);
    }
    
    .menu-toggle::after {
        transform: translateY(6px);
    }
    
    .menu-toggle i {
        opacity: 1;
        transform: translateY(0);
        position: relative;
        font-size: 0;
    }
    
    /* Animação do menu ativo */
    .menu-toggle.active::before {
        transform: rotate(45deg);
    }
    
    .menu-toggle.active::after {
        transform: rotate(-45deg);
    }
    
    .menu-toggle.active i {
        opacity: 0;
    }
    
    /* Menu Mobile Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-100%);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Navigation Links Mobile */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .mobile-nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        min-width: 200px;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
    }
    
    .mobile-nav-link:hover::before {
        left: 0;
    }
    
    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .mobile-nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* CTA Mobile no Menu */
    .mobile-cta {
        background: white;
        color: #0056e0;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        min-width: 250px;
        text-align: center;
    }
    
    .mobile-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: #f8f9fa;
    }
    
    /* Decoração do menu mobile */
    .mobile-menu-decoration {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Ajuste do body quando menu está ativo */
    body.menu-active {
        overflow: hidden;
    }
    
    /* Espaçamento para o header fixo */
    .hero-premium {
        padding-top: 70px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}


.hero-text {
    margin-top: 60px;
    animation: slideInLeft 1s ease;
}

.banner-container{
    position: absolute;
    top: 60px;
    width: 100%;
    height: 144px;
    text-align: center;
    /* background-color: #1882c1; */
    z-index: 2;
}


.banner{
    width: 100%;
    border-radius: 0 0 20px 20px;
}



/*BANNER MOBILE*/
.banner-containerm{
    display: none;
    position: absolute;
    flex-direction: column;
    top: 40px;
    left:0;
    width: 100%;
    justify-content: center;
}

.banner1m{
    width: 100%;
}

.banner2m{
    width: 100%;
}

@media (max-width:768px) {
    .banner-containerm{
        display: flex;
    }
    .banner-container{
        display: none;
    }
}



.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4a5568;
    border: 2px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    transform: translateY(-2px);
}

/* Floating Card */
.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease;
}

@keyframes float-small {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
}

.temp-local{
    position: relative;
    margin-top: 40px;
    animation: float-small 8s ease infinite;
}

.temp-data{
    position: relative;
    margin-bottom: 20px;
    animation: float-small 8s ease infinite;
}


.floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.floating-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.floating-card p {
    color: #4a5568;
    font-size: 16px;
}


@media (min-width:769px) and (max-width:1536px) {
    .banner{
        width: 78%;
    }
    .banner-container{
        margin-bottom: 10px;
    }
    
    .hero-text {
        margin-top: 150px;
    }
    
    .hero-title {
        font-size: 58px;
    }
    
    .hero-image{
        margin-top: 150px;
    }
    
    
}









/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    color: #4a5568;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

/* Lancamento Section */
.lancamento {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf7f9 0%, #f8f9ff 100%);
}

.lancamento-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.glass-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.glass-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.upper-glass-card{
    display: flex;
    flex-direction: row;
}

.left-side{
    text-align: center;
}

.left-side p{
    text-align: justify;
}

.naofiquedefora { 
    font-weight: 900 !important;
    font-size: 32px !important;
    align-items: center !important;
    text-align: center;
}

.right-side{
    margin-left: 5rem;
}

.img-auditorio{
    height: 320px;
    border-radius: 10%;
    box-shadow: 0 8px 4px rgba(139, 139, 139, 0.177);
    transition: all 0.3s ease;
}

.img-auditorio:hover{
    transform: translateY(-3px);
    scale: 1.05;
}

.release-btn{
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 24px;
    text-align: center;
    align-content: center;
    justify-content: center;
}

.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.specialty-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(234, 234, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(107, 122, 255, 0.1);
}

.specialty-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(149, 107, 255, 0.3);
}

.specialty-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.specialty-item span {
    font-weight: 500;
    color: #2d3748;
}

/* Speakers Section */
.speakers-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.speaker-image {
    position: relative;
    margin-bottom: 24px;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* .speaker-overlay {
position: absolute;
width: 120px;
height: 120px;
top: 0;
left: 19%;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
} */

.speaker-overlay {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    left: 6%;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
}

.speaker-social {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.speaker-socia:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-link {
    text-align: center;
    font-size: 48px;
    background: linear-gradient(60deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speaker-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.speaker-title {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*SEÇÃO LOCAL*/
.local-section{
    padding-left: 60px;
    padding-right: 60px;
    overflow: hidden;
}

.local-container{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.local-content{
    display: flex;
    justify-content: center;
    align-content: center;
}

.local-header{
    justify-content: center;
    align-content: center;
    margin-bottom: 40px;
}

.local-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 80%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.local-glass-card h3 {
    font-size: 2rem;
    font-weight: 750;
    color: #003ba0;
    margin-bottom: 1rem;
}

.local-glass-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.local-left-side{
    margin-left: 5rem;
    align-content: center;
}

.img-local{
    border-radius: 5%;
    box-shadow: 0 8px 4px rgba(139, 139, 139, 0.177);
    transition: all 0.3s ease;
}

.img-local:hover{
    transform: translateY(-3px);
    scale: 1.05;
}

.local-cta-container{
    text-align: right;
}

.local-cta{
    font-weight: 700 !important;
    font-size: 26px !important;
}

.local-btn{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 19px;   
}

.local-btn i{
    margin-left: 1rem;
}

@media (min-width:769px) and (max-width: 1536px) {
    .local-glass-card {
        padding: 2rem 3rem;
        width: 100%;
    }
    
    .local-left-side{
        margin-right: 3rem;
    }
    
    .img-local{
        height: 320px;
        width: inherit;
    }
}


@media (max-width: 768px) {
    .local-section{
        padding: 10px;
        text-align: center;
    }
    
    .local-glass-card {
        padding: 1.5rem;
        width: auto;
        flex-direction: column;
    }
    
    .local-left-side {
        margin: auto;
        margin-top: 2rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .local-left-side p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .img-local{
        height: 400px;
        width: 300px;
        object-fit: cover;
    }
    
    .right-side {
        margin-left: 0;
        text-align: center;
    }
    
    .release-btn {
        padding: 1rem;
        width: 100%;
        max-width: 420px;
        margin-top: 1.5rem;
    }
    
    .local-cta-container{
        text-align: center;
        margin-top: 1rem
    }
    
    .local-cta{
        line-height: 1.3;
    }
}






/* Program Section - Single Day */
.program-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea30 0%, #243a9c30 100%);
}

.program-single-day {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-sessions {
    position: relative;
}

.timeline-sessions::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg,transparent 0%, #667eea 5%, #243a9c 95%, transparent 100%);
}

.session-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 10rem; /*REMOVER QUANDO ADICIONAR HORÁIRO*/
}

@media (max-width:768px) {
    .session-item {
        gap:0;
        margin-left: 0rem; /*REMOVER QUANDO ADICIONAR HORÁIRO*/
    }
}


.session-item::before {
    content: '';
    position: absolute;
    left: -62px;
    top: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #667eea 0%, #243a9c 100%); */
    background: url("./assets/palestrantes/1.jpg") no-repeat center center / cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.session-item#default::before {
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
}

.session-item#camila::before {
    background: url("./assets/palestrantes/1.jpg") no-repeat center center / cover;
}

.session-item#fernanda::before {
    background: url("./assets/palestrantes/16.jpg") no-repeat center center / cover;
}

.session-item#juliana::before {
    background: url("./assets/palestrantes/3.png") no-repeat center center / cover;
}

.session-item#fernando::before {
    background: url("./assets/palestrantes/2.jpg") no-repeat center center / cover;
}

.session-item#gloria::before {
    background: url("./assets/palestrantes/8.jpg") no-repeat center center / cover;
}

.session-item#jardson::before {
    background: url("./assets/palestrantes/11.png") no-repeat center center / cover;
}

.session-item#trio::before {
    background: url("./assets/palestrantes/trio.jpg") no-repeat center center / cover;
}

.session-item#edgard::before {
    background: url("./assets/palestrantes/9.jpg") no-repeat center center / cover;
}

.session-item#cassia::before {
    background: url("./assets/palestrantes/15.jpg") no-repeat center center / cover;
}

.session-item#cred::before {
    background: url("./assets/pres.webp") no-repeat center center / cover;
}
.session-item#acolh::before {
    background: url("./assets/palestrantes/7.jpg") no-repeat center center / cover;
}
.session-item#almo::before {
    background: url("./assets/almo.webp") no-repeat center center / cover;
}

.session-time {
    min-width: 120px;
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    margin-right: 40px;
}

.session-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    width: 590px;
    transition: all 0.3s ease;
}

.session-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.session-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.session-content p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.speaker-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}


/*SEÇÃO FOODTRUCKS*/
.foodtrucks{
    padding-left: 60px;
    padding-right: 60px;
    overflow: hidden;
}

.foodtrucks-container{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.foodtrucks-text{
    display: flex;
    justify-content: center;
    align-content: center;
}

.foodtrucks-header{
    justify-content: center;
    align-content: center;
    margin-bottom: 40px;
}

.foodtrucks-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 80%;
    overflow: hidden;
    
}

.foodtrucks-glass-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.foodtrucks-glass-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.foodtrucks-left-side{
    margin-right: 5rem;
    align-content: center;
}

.img-foodtrucks{
    height: 320px;
    border-radius: 10%;
    box-shadow: 0 8px 4px rgba(139, 139, 139, 0.177);
    transition: all 0.3s ease;
}

.img-foodtrucks:hover{
    transform: translateY(-3px);
    scale: 1.05;
}

.foodtruck-cta-container{
    text-align: right;
}

.foodtruck-cta{
    font-weight: 700 !important;
    font-size: 26px !important;
}

.foodtrucks-btn{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 19px;
    
}

@media (min-width:769px) and (max-width: 1536px) {
    .foodtrucks-glass-card {
        padding: 2rem 3rem;
        width: 100%;
    }
    
    .foodtrucks-left-side{
        margin-right: 3rem;
    }
    
    .img-foodtrucks{
        height: 240px;
        border-radius: 10%;
        box-shadow: 0 8px 4px rgba(139, 139, 139, 0.177);
        transition: all 0.3s ease;
    }
}


@media (max-width: 768px) {
    .foodtrucks{
        padding: 10px;
        text-align: center;
    }
    
    .foodtrucks-glass-card {
        padding: 1.5rem;
        width: auto;
    }
    
    .foodtrucks-left-side {
        margin-bottom: 2rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        margin: auto;
        margin-bottom: 2rem;
    }
    
    .foodtrucks-left-side p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .img-foodtrucks{
        height: 200px;
        width: 100%;
        max-width: 280px;
        object-fit: cover;
    }
    
    
    .right-side {
        margin-left: 0;
        text-align: center;
    }
    
    .img-auditorio {
        height: 200px;
        width: 100%;
        max-width: 280px;
        object-fit: cover;
    }
    
    .release-btn {
        padding: 1rem;
        width: 100%;
        max-width: 420px;
        margin-top: 1.5rem;
    }
    
    .foodtruck-cta-container{
        text-align: center;
        margin-top: 1rem
    }
}



/*SEÇÃO PATROCINADORES*/
.patrocinadores{
    padding: 5rem;
}

.convenios-grid {
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    gap: 1.5rem;
    padding: 2rem 10rem;
}

.convenio-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.convenio-logo:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
    transform: translateY(-2px);
}

.convenio-logo img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    filter: grayscale(0.4);
    transition: all 0.3s ease;
    border-radius: 15%;
}

.convenio-logo:hover img {
    filter: grayscale(0);
}

.patro-cta-container{
    text-align: center;
}

.patro-btn{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
}

@media (max-width:768px) {
    .patrocinadores{
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .convenios-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 0;
    }
    
    .convenio-logo {
        padding: 1.5rem 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .convenio-logo img {
        height: 50px;
    }
    
    
}







/* Registration Section */
.registration-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.registration-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.registration-info-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.registration-subtitle {
    font-size: 20px;
    color: #a0aec0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.registration-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #e2e8f0;
    font-size: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing {
    text-align: left;
}

.limited-alert{
    color:#48bb78;
    font-size: 42px;
    margin-top: 1rem;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.226);
}

.limited-alert-sympla{
    color:#00a0fd;
    font-size: 42px;
    margin-top: 1rem;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.226);
}

.registration-info p{
    color:#00a0fd;
}

.price-installments {
    font-size: 16px;
    color: #a0aec0;
}

@media (max-width:768px) {
    .price-installments {
        text-align: center;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section a {
    margin-bottom: 8px;
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover{
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.logo-box{
    height: 60px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


.highlight {
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-insta{
    text-align: center;
    background: linear-gradient(60deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ============================================ */
/* ===============RESPONSIVIDADE=============== */
/* ============================================ */

/* Mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo-box {
        height: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .floating-card {
        padding: 30px 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .glass-card {
        padding: 7rem;
    }
    
    .img-auditorio {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .release-btn {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
    
    .specialties {
        grid-template-columns: 1fr;
    }
    
    /* Timeline mobile adjustments */
    .timeline-sessions::before {
        left: 20px;
    }
    
    .session-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .session-item::before {
        left: 8px;
    }
    
    .session-time {
        margin-bottom: 16px;
        margin-right: 0;
        min-width: auto;
        align-self: flex-start;
    }
    
    .price-current {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* ============================================ */
/* ===============RESPONSIVIDADE=============== */
/* ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .upper-glass-card {
        flex-direction: column;
    }
    
    .right-side {
        margin-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo-box {
        height: 40px;
    }
    
    /* Hero Section - CORRIGIDO */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 90px 20px 60px;
        padding-top: 220px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .floating-card {
        padding: 30px 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .floating-card h3 {
        font-size: 20px;
    }
    
    .card-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    /* Benefits Section - CORRIGIDO */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 24px 20px;
        text-align: center;
    }
    
    .benefit-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    /* Lançamento Section - CORRIGIDO */
    .upper-glass-card {
        flex-direction: column;
        gap: 0;
    }
    
    .left-side {
        margin-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    
    .left-side p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .right-side {
        margin-left: 0;
        text-align: center;
    }
    
    .img-auditorio {
        height: 200px;
        width: 100%;
        max-width: 280px;
        object-fit: cover;
    }
    
    .release-btn {
        padding: 1rem;
        width: 100%;
        max-width: 420px;
        margin-top: 1.5rem;
    }
    
    .specialties {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1rem;
        font-size: 16px;
    }
    
    .specialty-item i {
        font-size: 20px;
    }
    
    /* Speakers Section - CORRIGIDO */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .speaker-card {
        padding: 20px 16px;
    }
    
    .speaker-overlay {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .speaker-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .speaker-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    
    .image-placeholder {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .speaker-overlay {
        width: 80px;
        height: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .speaker-social {
        width: 40px;
        height: 40px;
    }
    
    .social-link {
        font-size: 24px;
    }
    
    /* Program Section - CORRIGIDO */
    .timeline-sessions::before {
        left: 15px;
        width: 3px;
    }
    
    .session-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
        margin-bottom: 30px;
    }
    
    .session-item::before {
        left: -5px;
        width: 35px;
        height: 35px;
    }
    
    .session-time {
        margin-bottom: 12px;
        margin-right: 0;
        min-width: auto;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .session-content {
        padding: 20px 16px;
        width: 100%;
    }
    
    .session-content h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .session-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .speaker-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    /* Registration Section - CORRIGIDO */
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .limited-alert-sympla{
        color:#00a0fd;
        font-size: 32px;
    }
    
    .registration-info-title {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 800;
    }
    
    .registration-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .price-old {
        font-size: 16px;
    }
    
    .sympla-page img {
        max-width: 200px;
        height: auto;
    }
    
    
    
    /* Form corrections */
    .registration-form {
        padding: 30px 20px;
    }
    
    .form h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* General */
    .section-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Section spacing */
    .benefits-section,
    .lancamento,
    .speakers-section,
    .program-section {
        padding: 3rem 0;
    }
    
    .registration-section {
        padding: 4rem 0;
    }
}

/* Muito pequeno (até 480px) */
@media (max-width: 480px) {
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .floating-card {
        padding: 20px 16px;
    }
    
    .session-content {
        padding: 16px 12px;
    }
    
    .price-current {
        font-size: 28px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
}



/* ==================== FOOTER MOBILE REDESENHADO ==================== */

@media (max-width: 768px) {
    .footer {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 0 0 0 0;
        position: relative;
        overflow: hidden;
        margin: 0 0 0 0;
    }
    
    .footer-container {
        padding: 0;
        margin: 0;
        max-width: 100vw;
    }
    
    /* Header do Footer Mobile */
    .footer-mobile-header {
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
        padding: 2.5rem 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .footer-mobile-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1), transparent 60%);
        pointer-events: none;
    }
    
    .footer-logo-mobile {
        color: white;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .footer-logo-mobile span {
        font-weight: 300;
    }
    
    .footer-tagline-mobile {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .footer-cta-mobile {
        background: white;
        color: #0056e0;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 2;
    }
    
    .footer-cta-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: #f8f9fa;
    }
    
    /* Conteúdo Principal do Footer */
    .footer-main-content {
        padding: 2rem 1.5rem;
        background: #1a1a2e;
        text-align: center;
    }
    
    /* Links de Navegação Mobile */
    .footer-nav-mobile {
        margin-bottom: 2.5rem;
    }
    
    .footer-nav-mobile h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }
    
    .footer-nav-mobile h3::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    }
    
    .footer-links-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-link-mobile {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        color: #b0b7c3;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }
    
    .footer-link-mobile:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(0, 86, 224, 0.3);
        color: white;
        transform: translateY(-2px);
    }
    
    /* Redes Sociais Mobile */
    .footer-social-mobile {
        margin-bottom: 2.5rem;
    }
    
    .footer-social-mobile h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }
    
    .footer-social-mobile h3::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    }
    
    .social-links-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link-mobile {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 86, 224, 0.3);
    }
    
    .social-link-mobile:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 86, 224, 0.4);
    }
    
    /* Informações de Contato Mobile */
    .footer-contact-mobile {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact-mobile h3 {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .contact-info-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-item-mobile {
        color: #b0b7c3;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .contact-item-mobile i {
        color: #243a9c;
        width: 20px;
    }
    
    /* Footer Bottom Mobile */
    .footer-bottom-mobile {
        background: #0f1419;
        padding: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-legal-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-legal-mobile a {
        color: #b0b7c3;
        text-decoration: none;
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
        transition: color 0.3s ease;
    }
    
    .footer-legal-mobile a:hover {
        color: white;
    }
    
    .footer-copyright-mobile {
        color: #6b7280;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Esconder elementos desktop */
    .footer-top,
    .footer-nav,
    .footer-bottom {
        display: none;
    }
}

.sympla-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 25px;
    overflow: hidden;
}

.sympla-header {
    background: #2c3e50;
    padding: 15px;
    text-align: center;
}

.sympla-logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.sympla-banner {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.sympla-banner-content {
    position: relative;
    z-index: 2;
}

.sympla-event-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

.sympla-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sympla-logo-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    position: relative;
}

.sympla-logo-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #3498db);
}

.sympla-banner-woman {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 200"><rect fill="%23f8f9fa" width="150" height="200"/><circle cx="75" cy="40" r="25" fill="%23d4a574"/><rect x="50" y="65" width="50" height="70" fill="%23ffffff"/><text x="75" y="180" text-anchor="middle" font-family="Arial" font-size="12" fill="%23666">Mulher</text></svg>') no-repeat center;
    background-size: contain;
}

.sympla-banner-circles {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.sympla-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
}

.sympla-circle-1 {
    background: rgba(255,255,255,0.3);
    top: 0;
    right: 0;
}

.sympla-circle-2 {
    background: #218b12;
    bottom: -20px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.sympla-info-banner {
    background: #ecf0f1;
    padding: 15px;
    border-left: 4px solid #3498db;
}

.sympla-info-text {
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 8px;
}

.sympla-transform-link {
    color: #3498db;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sympla-share-icon {
    width: 16px;
    height: 16px;
}

.sympla-main-content {
    padding: 25px;
}

.sympla-main-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sympla-event-details {
    margin-bottom: 15px;
}

.sympla-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #7f8c8d;
}

.sympla-icon {
    width: 16px;
    height: 16px;
    color: #95a5a6;
}

.sympla-location-link {
    color: #3498db;
    text-decoration: none;
}

.sympla-installment-btn {
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

.sympla-tickets-section {
    background: #34495e;
    color: white;
    padding: 15px;
    border-radius: 8px 8px 0 0;
}

.sympla-tickets-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.sympla-ticket-item {
    background: white;
    padding: 15px;
    border: 2px solid #9c9c9c;
    border-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 0 0 8px 8px;
}

.sympla-ticket-info {
    flex: 1;
}

.sympla-ticket-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 5px;
}


.sympla-ticket-price {
    color: #218b12;
    font-weight: bold;
    font-size: 24px;
}


.sympla-ticket-installments {
    color: #777777;
    font-size: 14px;
    margin-top: 2px;
}

.sympla-ticket-deadline {
    color: #95a5a6;
    font-size: 12px;
    margin-top: 2px;
}

.sympla-ticket-status {
    color: #95a5a6;
    font-size: 12px;
    font-style: italic;
}

.sympla-tax-info {
    padding: 10px 15px;
    background: #f8f9fa;
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
    border-bottom: 1px solid #ecf0f1;
}

.sympla-select-ticket-btn {
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);;
    color: #ececec;
    font-weight: 600;
    padding: 15px;
    border: none;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sympla-select-ticket-btn:hover{
    transform: translateY(-3px);
    scale: 1.05;
}