/* 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: 1rem 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);
    backdrop-filter: blur(15px);
}

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.3rem 5rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
}

header.scrolled nav {
    background-color: rgba(20, 20, 20, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    backdrop-filter: none;
    gap: 3rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease;
}

header.scrolled nav ul {
    gap: 3rem;
}

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;
    overflow: hidden;
}

.hero-background {
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5ecf5;
    z-index: -3;
}

.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 {
    animation: slideInLeft 1s ease;
    padding: 2px;
    backdrop-filter: blur(10px);
}

@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;
    flex-direction: column;
}

.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(-4px);
    }
}

.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 {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: float-small 3s ease-in-out infinite;
    transition: all 0.5s ease;
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.floating-card:hover {
    scale: 1.06;
    transform: translateY(-2px);
}

@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;
    margin-top: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    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;
}

.foodtrucks-left-side.adriana {
    margin-left: 5rem;
    align-content: center;
}

.upper-glass-card.adriana-cont {
    display: flex;
    flex-direction: row;
    margin-left: 5rem;
}


.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;
    }

    .foodtrucks-left-side.adriana {
        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;
    }

    .upper-glass-card.adriana-cont {
        flex-direction: column-reverse;
        margin-left: 0;
    }

    .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;
        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;
        max-height: 250px;
        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;
    }
}


/*Ações Sociais Section*/

.awards-gallery-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header da Seção */
.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Grid da Galeria - Foco nas Imagens */
.awards-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

/* Item de Premiação - Design Focado na Imagem */
.award-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform-origin: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    width: min-content;
    /*REMOVER DEPOIS*/
}

@media (max-width: 768px) {
    .award-item {
        transform: scale(0.8);
    }
}

.award-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.award-item.hidden {
    opacity: 0;
    visibility: collapse;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-item.showing {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin: 0;
    transition: all 0.5s ease 0.1s;
}

/* Container da Imagem - Maior Destaque */
.award-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: max-content;
    transition: all 0.3s ease;
}

.award-image {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
}

.award-image-real {
    height: fit-content;
    /* width: 400px;
    height: 380px; */
    width: fit-content;
    /* REMOVER DEPOIS */
    object-fit: cover;
    transition: all 0.3s ease;
}

.award-image-real:hover {
    scale: 1.05;
}

.award-item:hover .award-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.award-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* Informações da Premiação - Mais Concisas */
.award-info {
    padding: 20px;
    text-align: center;
}

.award-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.award-info p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botão Mostrar Mais */
.show-more-container {
    text-align: center;
    margin-bottom: 60px;
    margin-top: -60px;
}

@media (max-width:768px) {
    .show-more-container {
        margin-top: -70px;
    }
}

.show-more-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(236, 72, 153, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 8px rgba(236, 72, 153, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded {
    margin-top: 60px;
}

@media (max-width:768px) {
    .show-more-btn.expanded {
        margin-top: 120px;
    }
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.show-more-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}



/* SEÇÃO DE INSCRIÇÃO*/

.section-inscricao {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.inscricao-container {
    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: max-content;
    overflow: hidden;
}

@media (max-width:768px) {
    .inscricao-container {
        padding: 2.5rem 0.1rem;
    }
}

.inscricao-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2a3346;
    margin-bottom: 16px;
}

.iframe-forms {
    border-radius: 15px;
}

.inscricao-container a {
    color: white;
    background-color: #003ba0;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
}

.inscricao-container p {
    margin-bottom: 10px;
}


/* Contato*/
.contato-section {
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.contact-main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0px;
    margin: 40px 0;
    padding: 0 10rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.contact-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.contact-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
    min-width: 640px;
}

.contact-card:hover {
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-card:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-content {
    flex: 1;
}

.contact-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.contact-info {
    font-size: 15px;
    color: #1e40af;
    font-weight: 500;
}

.contact-schedule {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* FORMULÁRIO CONTATO */

.form-reset * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-required {
    color: #e53e3e;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-button:hover {
    background: linear-gradient(135deg, #5c72d3 0%, #1e3080 100%);
}

.form-button:active {
    transform: scale(0.98);
}

.form-icon {
    width: 20px;
    height: 20px;
}

.form-success-message {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #10b981;
}

.form-error-message {
    display: none;
    background-color: #d1fae5;
    color: #5f0606;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #b91010;
}

.form-success-message.form-show {
    display: block;
}

.form-error-message.form-show {
    display: block;
}

.form-char-counter {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.form-char-counter.form-limit-exceeded {
    color: #e53e3e;
}

@media (max-width:768px) {
    .contato-section {
        padding: 0 20px;
    }

    .contact-main-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0.5rem;
        justify-content: center;
        align-items: center;
    }

    .contact-card {
        min-width: 320px;
        width: 100%;
    }

    .contact-container {
        margin: 0;
        width: 360px;
    }

    .form-title {
        color: #1a1a1a;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .form-container {
        padding: 25px;
        margin: 0 auto;
    }
}

/* 720p */
@media (min-width:769px) and (max-width: 1536px) {

    .contact-main-container {
        gap: 40px;
    }

    .contact-card {
        min-width: 400px;
    }
}

.autores-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}








.carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #243a9c 100%);
    position: relative;
    margin: 2rem 10rem;
    border-radius: 25px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 20px;
}

.carousel-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    opacity: 95%;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: center;
}

.carousel-subtitle {
    font-size: 24px;
    color: #ffffff;
    opacity: 95%;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


.carousel-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.carousel-card-main {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    object-fit: fill;
    border-radius: 20px;
    margin: 0 200px;
    margin-bottom: 20px;
}

.carousel-card-main img:hover {
    transform: scale(1.05);
}

.carousel-card-main img {
    object-fit: fill;
    width: 100%;
    transition: all 0.3s ease;

    overflow: hidden;
}


.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 200px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.carousel-card {
    min-width: 100%;
    background: white;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    object-fit: fill;
    transition: all 0.3s ease;
}

.carousel-card:hover {
    transform: scale(1.05);
}

.carousel-card img {
    object-fit: fill;
    width: 100%;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.carousel-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: scale(1);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-header {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .carousel-title {
        font-size: 42px;
        margin-bottom: 5px;
    }

    .carousel-section {
        padding: 0rem 0;
        margin: 0.2rem 0.5rem;
    }

    .carousel-card-main {
        margin: 10px 10px 0px 10px;
    }


    .carousel-card-main img {
        width: 100%;
        max-width: 400px;
        position: relative;
    }

    .carousel-container {
        width: 100%;
        max-width: 400px;
        position: relative;
    }

    .carousel-wrapper {
        margin: 10px 10px 0px 10px;
    }

    .carousel-controls {
        margin-bottom: 30px;
    }

    /* .carousel-card {
    padding: 20px;
    } */
}



/* Map Container Styles */
.cidades-section {
    padding: 4rem 0;
}

.cidades-container {
    justify-content: center;
    align-items: center;
    text-align: center;

}

.dynamic-map {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-container {
    height: 550px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {

    .map-container {
        max-height: 350px;
    }
}

.leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
}

/* Botão de centralizar mapa */
.center-map-btn {
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.center-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.center-map-btn:active {
    transform: translateY(0);
}

.center-map-btn i {
    font-size: 16px;
}

.carousel-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.carousel-wrapper {
    margin: 10px 10px 0px 10px;
}

.carousel-controls {
    margin-bottom: 30px;
}

/* .carousel-card {
    padding: 20px;
    } */
}



/* Map Container Styles */
.cidades-container {
    justify-content: center;
    align-items: center;
    text-align: center;

}

.dynamic-map {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-container {
    height: 550px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .map-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
}

/* Botão de centralizar mapa */
.center-map-btn {
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.center-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.center-map-btn:active {
    transform: translateY(0);
}

.center-map-btn i {
    font-size: 16px;
}