/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(255, 140, 0, 0.8) 50%, rgba(255, 99, 71, 0.75) 100%), 
                url('../images/hero-idosos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Navigation */
.main-nav {
    position: relative;
    z-index: 1000;
    padding: 2rem 0 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-nav-btn {
    background: #FFD700;
    color: #333;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-nav-btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: relative;
}

.mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-btn {
    width: 100%;
    margin-bottom: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.2);
    justify-content: center;
    text-align: center;
}

.mobile-nav-btn:hover,
.mobile-nav-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #333;
}

.mobile-cta {
    width: 100%;
    margin-top: 0.5rem;
    background: #FFD700;
    color: #333;
    border: none;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    color: #FFD700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.info-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-slogan {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h4 {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.info-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-compact {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    max-width: 200px;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: #FFD700;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF8C00, #FF6347);
    color: white;
    border: 2px solid rgba(255, 140, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FF7F00, #FF4500);
    border-color: rgba(255, 127, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Registration Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    width: 100%;
}

.form-container {
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #FFD700;
}

.form-submit {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Objetivo Section */
.objetivo {
    padding: 3rem 0 6rem 0;
    background: #f8fafc;
}

.objetivo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.objetivo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.objetivo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
}

.objetivo-card p {
    color: #666;
    line-height: 1.6;
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tema-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tema-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tema-item i {
    font-size: 1.5rem;
    color: #FFD700;
}

.tema-item span {
    font-weight: 600;
    color: #333;
}

/* Agenda Section */
.agenda {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 50%, rgba(255, 99, 71, 0.1) 100%);
    position: relative;
}

.programacao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.evento-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.evento-destaque {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: white;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.evento-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

.evento-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.evento-icon:hover {
    transform: scale(1.1) rotate(5deg);
    color: #FF8C00;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.evento-destaque .evento-icon {
    color: white;
    animation: iconFloatDestaque 3s ease-in-out infinite;
}

.evento-destaque .evento-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(255, 255, 255, 0.9);
}

@keyframes iconFloatDestaque {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.evento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.evento-destaque h3 {
    color: white;
}

.evento-data {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF8C00;
    margin-bottom: 0.5rem;
}

.evento-destaque .evento-data {
    color: white;
    font-weight: 700;
}

.evento-horario {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.evento-destaque .evento-horario {
    color: rgba(255, 255, 255, 0.9);
}

.evento-local {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.evento-destaque .evento-local {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Dados Section */
.dados {
    padding: 6rem 0;
    background: #f8fafc;
}

.dados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dado-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.dado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dado-card.highlight {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: white;
}

.dado-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.dado-card.highlight .dado-icon {
    color: white;
}

.dado-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 0.5rem;
}

.dado-card.highlight .dado-number {
    color: white;
}

.dado-label {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.25rem;
}

.dado-card.highlight .dado-label {
    color: rgba(255, 255, 255, 0.9);
}

.dado-percent {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 600;
}

.dado-card.highlight .dado-percent {
    color: rgba(255, 255, 255, 0.8);
}

/* Eixos Section - Design Completamente Novo */
.eixos {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.eixos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 99, 71, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.eixos .container {
    position: relative;
    z-index: 2;
}

.eixos .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eixos .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eixos .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.eixos-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 24px;
    margin: 0 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 500%;
}

.eixo-card {
    flex: 0 0 20%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.eixo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FF8C00, #FF6347, #FF8C00, #FFD700);
    background-size: 300% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.eixo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.eixo-card:hover::after {
    opacity: 1;
}

.eixo-card:last-child {
    border-right: none;
}

.eixo-card:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.eixo-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.eixo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.eixo-card:hover .eixo-icon {
    transform: scale(1.2) rotate(10deg);
    color: #FF8C00;
    text-shadow: 0 6px 12px rgba(255, 140, 0, 0.4);
}

.eixo-card:hover .eixo-icon::before {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
}

.eixo-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.eixo-card:hover h3 {
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.eixo-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
    transition: all 0.3s ease;
}

.eixo-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.indicator.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.indicator.active::before {
    opacity: 1;
}

.indicator:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

/* Responsividade do novo design */
@media (max-width: 1024px) {
    .eixos .section-header h2 {
        font-size: 2.5rem;
    }
    
    .carousel-container {
        margin: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .eixos {
        padding: 4rem 0;
    }
    
    .eixos .section-header h2 {
        font-size: 2rem;
    }
    
    .eixos .section-header p {
        font-size: 1rem;
    }
    
    .carousel-container {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .eixo-card {
        min-height: 320px;
        padding: 2rem 1.5rem;
    }
    
    .eixo-icon {
        font-size: 2.8rem;
    }
    
    .eixo-card h3 {
        font-size: 1.2rem;
    }
    
    .eixo-card p {
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .eixos .section-header h2 {
        font-size: 1.8rem;
    }
    
    .carousel-container {
        margin: 0 0.5rem;
    }
    
    .eixo-card {
        padding: 1.5rem 1rem;
        min-height: 280px;
    }
    
    .eixo-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .eixo-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .eixo-card p {
        font-size: 0.85rem;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.eixo-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.eixo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #FF8C00;
}

.eixo-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1.5rem;
}

.eixo-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6347;
    margin-bottom: 1rem;
}

.eixo-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.eixo-card ul {
    list-style: none;
}

.eixo-card li {
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-weight: 500;
}

.eixo-card li::before {
    content: '•';
    color: #FF8C00;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contato Section */
.contato {
    padding: 6rem 0;
    background: #f8fafc;
}

.contato-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contato-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contato-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.contato-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.contato-card p {
    color: #666;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* MOBILE RESPONSIVE - CORREÇÃO COMPLETA */
@media screen and (max-width: 768px) {
    /* NAVEGAÇÃO MOBILE - FORÇAR HIDE/SHOW */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block !important;
    }
    
    /* CONTAINER PRINCIPAL */
    .nav-container {
        padding: 0 1rem !important;
        justify-content: space-between !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    /* HERO SECTION - LAYOUT MOBILE FORÇADO */
    .hero-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    .hero-text {
        order: 1 !important;
        width: 100% !important;
    }
    
    .hero-form {
        order: 2 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* TÍTULO E TEXTOS */
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.4rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* INFO ITEMS */
    .hero-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        align-items: center !important;
    }
    
    .info-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        min-height: 44px !important;
        gap: 0.5rem !important;
    }
    
    .info-item i {
        font-size: 1.2rem !important;
    }
    
    /* SLOGAN */
    .hero-slogan {
        font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* HIGHLIGHTS */
    .hero-highlights {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .highlight-box {
        padding: 1rem !important;
    }
    
    /* STATS - MANTÉM LADO A LADO */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    /* BOTÕES */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        min-height: 50px !important;
        font-size: 1rem !important;
    }
    
    /* SEGUNDA SEÇÃO - OBJETIVO MOBILE */
    .objetivo-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .objetivo-card {
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .temas-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    
    .tema-item {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* SEÇÕES GERAIS MOBILE */
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }
    
    .section-header p {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        padding: 0 1rem !important;
    }
}
    
    /* Mobile menu full-screen overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(236, 72, 153, 0.95));
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 9999;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-btn {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 200px;
        text-align: center;
        margin: 0;
    }
    
    .mobile-nav-btn:hover,
    .mobile-nav-btn.active {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-cta {
        background: #FFD700;
        color: #333;
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        min-width: 200px;
        text-align: center;
        margin-top: 1rem;
    }
    
    .mobile-cta:hover {
        background: #FFA500;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    }
    
    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: rotate(90deg);
    }
    
    .mobile-menu-close i {
        color: white;
        font-size: 1.2rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
  @media (max-width: 768px) {
    /* Mobile optimizations */
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
    
    .logo {
        font-size: 1.2rem;
        margin: 0;
        margin-left: 1rem;
    }
    
    /* CORREÇÃO MOBILE: Layout hero em coluna única */
    .hero-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .hero-text {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .hero-form {
        order: 2 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
        flex: none !important;
    }
    
    /* Botões hero empilhados */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        min-height: 50px !important;
    }
    
    .objetivo-grid,
    .eixos-grid,
    .contato-grid,
    .programacao-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* EIXOS MOBILE - 1 CARD POR LINHA */
    .eixos-grid {
        grid-template-rows: auto !important;
    }
    
    .eixos-grid .eixo-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .dados-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .temas-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .hero-main {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    /* Melhorias específicas para formulário mobile */
    .hero-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem;
        font-size: 16px; /* Previne zoom no iOS */
        border-radius: 10px;
    }
    
    .form-submit {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 50px; /* Melhor área de toque */
    }
    
    /* Melhor espaçamento para toque */
    .checkbox-label {
        padding: 0.5rem 0;
        min-height: 44px; /* Área mínima recomendada para toque */
        align-items: center;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 0.75rem;
    }
    
    .objetivo-card,
    .eixo-card,
    .contato-card {
        padding: 1.5rem;
    }
    
    .mobile-nav-btn,
    .mobile-cta {
        min-width: 180px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        min-height: 50px; /* Melhor área de toque */
    }
    
    .mobile-menu {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    /* Melhor visualização de dados em mobile */
    .dados-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dado-card {
        padding: 1.5rem;
    }
    
    /* Otimização para info items */
    .info-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

/* AJUSTES DESKTOP ESPECÍFICOS - COPIANDO DESIGN ORIGINAL */
@media screen and (min-width: 769px) {
    /* PRIMEIRA SEÇÃO - EIXOS E MODALIDADES LADO A LADO (DESIGN ORIGINAL) */
    .hero-highlights {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .highlight-box {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .highlight-box h4 {
        color: #FFD700 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.75rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .highlight-box ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .highlight-box li {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
        font-weight: 500 !important;
    }
    
    /* STATS COM DESIGN ORIGINAL */
    .hero-stats {
        display: flex !important;
        gap: 2rem !important;
        margin-bottom: 2.5rem !important;
        flex-wrap: wrap !important;
    }
    
    .stat-item {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        color: #FFD700 !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
    }
    
    .stat-item i {
        font-size: 1.1rem !important;
        color: #FFD700 !important;
    }
    
    /* SEGUNDA SEÇÃO - OBJETIVO COM ESPAÇAMENTO ORIGINAL */
    .objetivo {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
        background: #f8fafc !important;
    }
    
    .objetivo .section-header {
        text-align: center !important;
        margin-bottom: 3rem !important;
    }
    
    .objetivo .section-header h2 {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        color: #333 !important;
        margin-bottom: 1rem !important;
    }
    
    .objetivo .section-header p {
        font-size: 1.1rem !important;
        color: #666 !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        line-height: 1.6 !important;
    }
    
    /* CARDS OBJETIVO EM LINHA (DESIGN ORIGINAL) */
    .objetivo-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        margin-bottom: 4rem !important;
    }
    
    .objetivo-card {
        background: white !important;
        padding: 2.5rem !important;
        border-radius: 16px !important;
        text-align: center !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(255, 215, 0, 0.1) !important;
    }
    
    .objetivo-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    }
    
    .card-icon {
        font-size: 3rem !important;
        color: #FFD700 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .objetivo-card h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin-bottom: 1rem !important;
    }
    
    .objetivo-card p {
        color: #666 !important;
        line-height: 1.6 !important;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .hero-text {
        flex: 1;
        order: 1;
    }
    
    .hero-form {
        flex: 0 0 300px;
        order: 2;
        margin: 0;
    }
    
    .mobile-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .mobile-nav-btn,
    .mobile-cta {
        min-width: 150px;
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

