/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgb(0 0 0 / 46%);
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Slider otimizado para imagens 1600x442px */
.hero-slider {
    margin-top: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    /* Altura fixa baseada na proporção 1600:442 */
    height: clamp(250px, 27.625vw, 442px);
    max-height: 500px; /* Limita a altura máxima para telas muito grandes */
}

/* Container do slider com proporção exata */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Proporção exata de 1600:442 = 3.62:1 */
    aspect-ratio: 1600/442;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Otimização específica para imagens 1600x442 */
.slide-bg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover mantém a proporção e preenche o container */
    object-fit: cover;
    /* Centraliza a imagem no container */
    object-position: center center;
    /* Melhora a qualidade da renderização */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    /* Transição suave para mudanças */
    transition: transform 0.3s ease;
}

/* Overlay para melhor legibilidade do texto */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 2;
    /* Gradiente sutil para melhor contraste */
    /* background: linear-gradient(
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    ); */
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

/* Controles do slider */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    font-size: 18px;
    color: var(--dark);
}

.slider-controls button:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-controls button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.3);
}

/* Indicadores/dots do slider */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background-color: var(--white);
    transform: scale(1.3);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot:hover {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* Responsividade otimizada */
@media (max-width: 1600px) {
    .hero-slider {
        height: clamp(220px, 30vw, 400px);
    }
}

@media (max-width: 1200px) {
    .hero-slider {
        height: clamp(200px, 35vw, 350px);
    }
    
    .slider-controls button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: clamp(180px, 40vw, 300px);
    }
    
    .slide-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: clamp(160px, 50vw, 250px);
        margin-top: 70px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-content {
        max-width: 500px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: clamp(140px, 60vw, 200px);
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 4px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-content {
        padding: 0 10px;
    }
}

/* Classe auxiliar para imagens de diferentes proporções */
.slide-bg img[data-aspect="1600x442"] {
    /* Garante que imagens 1600x442 sejam exibidas corretamente */
    object-fit: cover;
    object-position: center;
}

/* Animação suave para transições */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content.animate {
    animation: slideIn 0.6s ease-out;
}

/* Prevenção de layout shift */
.hero-slider::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 27.625%; /* Proporção 1600:442 */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Otimização para telas de alta resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .slide-bg img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (max-width: 576px) {
    .slider-container {
        padding-bottom: 60%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}
/* Sobre */
.about-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    margin: 30px 0;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Projetos em Destaque */
.featured-projects {
    padding: 80px 0;
    background-color: #d9d9d9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.project-link {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.project-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Como Ajudar */
.how-to-help {
    padding: 80px 0;
    background-color: #ffffff;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.help-option {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff00;
}

.help-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.help-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.help-option h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.help-option p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.help-link {
    color: var(--primary);
    font-weight: 500;
}

.help-link:hover {
    color: var(--secondary);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgb(44 110 156);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
/* Breadcrumb */
.breadcrumb {
    background-color: var(--light);
    padding: 25px 0;
    margin-top: 80px;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    margin-right: 10px;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Página Sobre */
.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Missão, Visão e Valores */
.mission-section {
    background-color: var(--light);
    padding: 60px 0;
}

.mvw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvw-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

.mvw-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mvw-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.mvw-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.mvw-item ul {
    list-style: none;
    text-align: left;
}

.mvw-item ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mvw-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Equipe */
.team-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-bio {
    color: var(--text-light);
}

/* Página Projetos */
.projects-page {
    padding: 0px 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.project-stats .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Página Como Ajudar */
.help-page {
    padding: 0px 0;
}

.help-option-detail {
    margin-bottom: 80px;
}

.help-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.help-detail-content.reverse {
    flex-direction: row-reverse;
}

.help-detail-text {
    flex: 1;
}

.help-detail-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.help-detail-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.help-detail-text ul li {
    margin-bottom: 10px;
}

.help-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.social-share {
    margin-top: 30px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.share-btn.facebook { background-color: #3b5998; }
.share-btn.instagram { background-color: #e4405f; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.whatsapp { background-color: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Página Contato */
.contact-page {
    padding: 0px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #0000003b;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 110, 156, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent);
}

/* Mapa */
.map-section {
    padding: 0 0 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsividade adicional */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .help-detail-content,
    .help-detail-content.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .history-timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .project-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .mvw-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
}
/* Página de Patrocinadores */
.sponsors-page {
    padding: 60px 0;
}

.sponsors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.sponsor-category {
    margin-bottom: 60px;
}

.sponsor-category h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sponsors-grid {
    display: grid;
    gap: 30px;
}

.sponsors-grid.gold {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsors-grid.silver {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsors-grid.bronze {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sponsor-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsors-grid.gold .sponsor-logo {
    height: 150px;
}

.sponsors-grid.bronze .sponsor-logo {
    height: 90px;
}

.sponsor-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.sponsor-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.become-sponsor {
    background-color: var(--light);
    padding: 60px 0;
    margin-top: 60px;
    text-align: center;
}

.become-sponsor-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--text-light);
}

/* Responsividade para patrocinadores */
@media (max-width: 768px) {
    .sponsors-grid.gold,
    .sponsors-grid.silver,
    .sponsors-grid.bronze {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* .................................................................................

/* Seção de Parceiros */
.partners-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 15px;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.partners-header h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #2980b9;
    margin: 10px auto 0;
    border-radius: 2px;
}

.partners-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carrossel de Parceiros */
.partners-carousel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 40px;
    padding: 0 40px;
}

.partner-item {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 250px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #004cf0;
}

.partner-logo {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
}

.carousel-btn {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #2c3e50;
    font-size: 18px;
}

.carousel-btn:hover {
    background: #2980b9;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Indicadores */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2980b9;
    transform: scale(1.2);
}

/* Responsividade para a seção de parceiros */
@media (max-width: 992px) {
    .partner-item {
        min-width: 220px;
    }

    .partners-track {
        gap: 25px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .partners-header h2 {
        font-size: 1.8rem;
    }

    .partner-item {
        min-width: 180px;
    }

    .partners-track {
        gap: 20px;
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 40px 0;
    }

    .partner-item {
        min-width: 160px;
        padding: 20px;
    }

    .partners-track {
        padding: 0 15px;
    }
}

/* .............................................................................

/* Página de Patrocinadores - Estilos específicos */
.sponsors-page {
    padding: 0px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f9a826;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.sponsors-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sponsors-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Grade Unificada de Patrocinadores */
.unified-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.sponsor-card-unified {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 25%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sponsor-card-unified:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0.7;
}

.sponsor-card-unified:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sponsor-logo-unified {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 15px;
    width: 100%;
}

.sponsor-logo-unified img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-card-unified:hover .sponsor-logo-unified img {
    transform: scale(1.05);
}

.sponsor-info-unified {
    text-align: center;
    padding: 0 10px;
}

.sponsor-info-unified h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.sponsor-info-unified p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.sponsor-info-unified small {
    display: block;
    margin-top: 10px;
    color: #888;
    font-style: italic;
}

.sponsor-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #3498db;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Filtros */
.sponsors-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: #cfcfcf;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active, .filter-btn:hover {
    background: #3498db;
    color: white;
    box-shadow: 0 4px 10px rgb(183 183 183);
}

/* Seção de tornar-se patrocinador */
.become-sponsor {
    background: #ffffff;
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 15px;
    color: #2c3e50;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.become-sponsor-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.become-sponsor h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.become-sponsor p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background: #2c6e9c;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    background: #2980b9;
}

/* Responsividade para patrocinadores */
@media (max-width: 992px) {
    .unified-sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .sponsor-logo-unified {
        height: 130px;
    }
    
    .sponsor-logo-unified img {
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .unified-sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .sponsor-card-unified {
        padding: 20px;
    }
    
    .sponsor-logo-unified {
        height: 120px;
    }
    
    .sponsor-logo-unified img {
        max-height: 90px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .unified-sponsors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sponsors-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        justify-content: center;
    }
    
    .sponsor-logo-unified {
        height: 110px;
    }
    
    .sponsor-logo-unified img {
        max-height: 80px;
    }
    
    .become-sponsor {
        padding: 40px 0;
    }
    
    .become-sponsor h2 {
        font-size: 1.8rem;
    }
}

/* Slider em tela inteira */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img,
.slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ajustes responsivos para o slider em tela cheia */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        margin-top: 70px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Adicione isso ao seu arquivo components.css */

.hero-slider {
    height: 600px !important; /* Sobrescreve a altura anterior de 100vh */
    margin-top: 80px;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px !important;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 450px !important;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Correção para os controles do slider */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10; /* Garantir que fiquem acima do conteúdo */
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 11;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-controls button:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; /* Garantir que fiquem acima do conteúdo */
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background-color: var(--white);
    transform: scale(1.2);
    border-color: var(--primary);
}

.slider-dots .dot:hover {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }
}