/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1556a6;
    color: white;
}

.btn-primary:hover {
    background-color: #003d99;
}

.btn-outline {
    background-color: transparent;
    color: #0052cc;
    border: 2px solid #0052cc;
}

.btn-outline:hover {
    background-color: #0052cc;
    color: white;
}

.btn-light {
    background-color: white;
    color: #0052cc;
}

.btn-light:hover {
    background-color: #f8f9fa;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
}

.btn-action {
    background-color: #1556a6;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-action:hover {
    background-color: #003380;
}

/* Barra superior */
.top-bar {
    background-color: #6c757d; /* Cor azul primária do site */
    padding: 8px 0;
    color: white;
    font-size: 0.75rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left span {
    display: flex;
    align-items: center;
}

.top-bar-left i {
    margin-right: 8px;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    transition: opacity 0.3s ease;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: #0052cc;
}

.social-links a {
    color: #0052cc;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #003d99;
}

/* Cabeçalho principal */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-contact a.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-contact .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.header-contact .contact-icon i {
    font-size: 20px;
    color: #0052cc;
}

.header-contact .contact-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-contact .contact-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.header-contact .contact-number {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

/* Barra de Navegação */
.main-nav-bar {
    background-color: #001dda;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav li:last-child {
    border-right: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    padding: 20px;
    display: block;
    font-weight: 400;
    font-size: 14px;
}

.main-nav a:hover {
    background-color: #0041a3;
}

.btn.btn-action.mobile-associado-btn{
    color: white!important;
}

.btn.btn-action.mobile-associado-btn:hover{
    background-color: #003380!important;
}

.header-actions {
    display: flex;
    align-items: stretch; /* Para que o search-toggle ocupe toda a altura */
}

.search-toggle {
    display: flex;
    align-items: center;
    /*background-color: #1556a6;*/
    color: white;
    padding: 0 20px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.search-toggle:hover {
    background-color: #003380;
    color: white;
}

.header-actions .btn {
    margin: 0 15px;
    align-self: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
    align-self: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner principal */
.hero-banner {
    background: url('../images/hero-banner.webp') no-repeat center center;
    background-size: cover;
    color: #333;
    padding: 120px 0;
    min-height: 600px;
    height:600px;
    display: flex;
    align-items: center;
}

.hero-banner .container {
    margin: 0 0 0 10%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #1556a6;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #555;
}

.hero-banner .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
}


@media screen and (max-width: 768px) {
    .hero-banner .container {
        margin: 0 auto;
        max-width: 90% !important;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .hero-banner .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-large {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-light {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-action {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-light {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-action {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .hero-banner .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .associado-btn{
        display: none!important;
    }

    .header-actions {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        padding: 15px;
    }

    .sobre-hero-section .container {
        margin: 0 0 0 10%;
        max-width: 100% !important;
    }

    .sobre-proposito-section {
        padding: 80px 0;
        background-color: transparent;
        position: absolute;
        top: -270px;
        width: 100%;
    }
    
}

/* Seção de serviços */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
    justify-content: center;
}

/* Responsividade para os cards de serviços */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .service-card {
        width: 100%;
    }
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 300px;
    height: auto;
}

.service-card a {
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 25px 30px;
    position: relative;
}

.service-card-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 40%;
    background-color: #1556a6;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: #333;
    font-weight: 600;
}

/* Seção de informações */
.info-section {
    padding: 0;
    background-color: #fff; /* O branco fica no corpo, mas a seção geral precisa de uma cor base */
}

.info-section-header {
    background-color: #fdd500;
    padding: 60px 0 180px; /* Aumenta o padding inferior para criar espaço para a sobreposição */
    text-align: center;
}

.info-section-header h2 {
    color: #001dda;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.info-section-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #001dda;
    margin: 25px auto 0;
}

.info-section-header p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.info-section-body {
    background-color: #fff;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: -260px; /* Puxa a grade para cima, sobrepondo o header */
    position: relative; /* Garante que a grade fique acima dos fundos */
    z-index: 2;
}

.info-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.info-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-card-content .btn-primary {
    background-color: #001dda!important;
}

.info-card h3 {
    color: #555;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: none;
}

.info-card p {
    color: #777;
    font-size: 0.85rem;
    margin: 0 0 20px 0;
    text-transform: none;
    flex-grow: 1;
}

.info-card .btn-primary {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    align-self: flex-start;
    border-radius: 4px;
}

/* Seção de eventos */
.events-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/events-hero.webp) no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.events-content {
    /*max-width: 600px;*/
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.events-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.events-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.events-text .btn-primary {
    background-color: #001dda;
}

.events-section .btn-primary {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Seção Instagram */
.instagram-section {
    padding: 80px 0 0;
    background-color: #fff;
}

.social-follow {
    text-align: center;
}

.social-follow h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.social-follow p {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #666;
    position: relative;
}

.social-follow p::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #001dda;
    margin: 25px auto 0;
}

.instagram-feed {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.insta-post img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.instagram-cta {
    background-color: #001dda;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.instagram-cta .btn-light {
    background-color: #fff;
    color: #001dda;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 4px;
}

/* Seção de esportes */
.sports-section {
    background-color: #001dda;
    color: white;
    padding: 80px 0;
}

.sports-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sports-section-p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.sports-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 450px));
    gap: 30px;
    margin-bottom: 60px;
}

.sport-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    color: #333;
    transition: transform 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-5px);
}

.sport-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.sport-info {
    padding: 25px;
}

.sport-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0052cc;
}

.sport-info p {
    color: #666;
}

.sports-cta {
    text-align: center;
}

.sports-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Seção de contato */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-text {
    flex: 1;
    max-width: 55%;
}

.contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.contact-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #001dda;
}

.contact-text p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    text-align: right;
    max-width: 45%;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Alertas do formulário */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Formulário de Contato */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #555;
}

.contact-form select {
    cursor: pointer;
}

.contact-form button {
    padding: 15px 40px;
    font-weight: 700;
    background-color: #1556a6;
    border-radius: 5px;
}

/* Rodapé */
.main-footer {
    background-color: #1f1f1f;
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section.about p {
    margin: 20px 0;
    line-height: 1.7;
    text-transform: uppercase;
}

.footer-logo {
    height: auto;
    width: 120px;
    margin-bottom: 15px;
}

.btn-newsletter {
    background-color: #1556a6;
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    line-height: 1.3;
}

.social-links-footer {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.social-links-footer a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links-footer a:hover {
    background-color: #1556a6;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links li {
    margin-bottom: 10px;
}

.footer-section.links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.links a:hover {
    color: #fff;
}

.partner-logos-footer {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.partner-logos-footer img {
    width:90px
}

.contact-box {
    border: 1px solid #444;
    border-radius: 15px;
    padding: 20px;
    font-size: 0.6rem;
}

.contact-box p {
    margin: 0 0 10px 0;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
}

.contact-box a i {
    margin-right: 8px;
    font-size: 1rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box .online-hours {
    color: #00bfff; /* Deep sky blue */
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Responsividade da top-bar para tablets */
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-left span {
        font-size: 0.7rem;
    }
    
    .top-bar-right a {
        margin-left: 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Responsividade da top-bar para mobile */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-left span {
        font-size: 0.65rem;
        justify-content: center;
    }
    
    .top-bar-left i {
        margin-right: 5px;
    }
    
    .top-bar-right {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .top-bar-right a {
        margin-left: 0;
        font-size: 16px;
        padding: 5px;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }
    
    .top-bar-right a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        opacity: 1;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .events-content,
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text,
    .events-text,
    .contact-text {
        max-width: 100%;
    }
    

    .info-grid,
    .sports-grid {
        grid-template-columns: 1fr;
    }

    .contact-image {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Responsividade da top-bar para telas muito pequenas */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-left span {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .top-bar-right a {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }
}

/* Estilos da Página de Notícias */
.news-page-section {
    background-image: linear-gradient(rgba(253, 213, 0, 0.9), rgba(253, 213, 0, 0.9)), url('../images/news-background.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0 80px;
}

.page-title-header {
    margin-bottom: 60px;
}

.page-title-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card, .news-card-large {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover, .news-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card img, .news-card-large img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card-large img {
    height: 100%;
    max-height: 470px; /* Ajuste conforme necessário */
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.news-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.news-card-content .btn {
    align-self: flex-start;
}

.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination li {
    margin: 0;
}

.pagination a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #0052cc;
    background-color: #fff;
    border-right: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.pagination li:last-child a {
    border-right: none;
}

.pagination a:hover {
    background-color: #f8f9fa;
}

.pagination a.active {
    background-color: #0052cc;
    color: white;
    font-weight: 600;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .news-card-large img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-large {
        grid-column: span 1;
    }
}

/* --- Estilos da Página Sobre --- */
/* 1. Seção História */
.sobre-hero-section {
    padding: 60px 0;
    background: #f8f9fa url('../images/history-background-hero.webp') no-repeat center center; /* Adicione uma imagem de fundo sutil aqui */
    background-size: cover;
    text-align: left;
    height:90vh;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.sobre-hero-section .container {
    margin: 0 0 0 10%;
    max-width:40%!important;
}
.sobre-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e4d8b;
}
.sobre-hero-section p {
    font-size: 1.2rem;
    color: #333;
    max-width: 330px;
    font-weight: 700;
}

.sobre-content-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    bottom: 120px;
}

.historia-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.historia-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.historia-image-container {
    flex: 0 0 400px;
}

.historia-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 2. Seção Propósito */
.sobre-proposito-section {
    padding: 80px 0;
    background-color: transparent;
    position: absolute;
    top: -220px;
    width: 100%;
    
}

.proposito-card {
    background-color: #fdd500;
    padding: 50px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.proposito-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #001dda;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.proposito-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* 3. Seção Azul (União e Diretoria) */
.sobre-blue-section {
    background-color: #001dda;
    color: #fff;
    padding: 80px 0;
}

.sobre-gestao-content {
    position: relative;
}

/* União */
.uniao-content {
    margin-bottom: 80px;
    margin-top: 120px;
}

.uniao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.uniao-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}

.uniao-content p {
    font-size: 1.1rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
    text-align: left;
}

.btn-gestores {
    background-color: #fff;
    color: #001dda;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-gestores:hover {
    background-color: #fdd500;
    color: #001dda;
}

/* Diretoria */
.diretoria-content {
    text-align: center;
}

.diretoria-header {
    margin-bottom: 60px;
}

.diretoria-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fdd500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diretoria-header p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
}

.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.membro-card {
    text-align: center;
}

.membro-foto {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #4db6ac;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.membro-card p {
    font-size: 0.9rem;
    color: #ddd;
    text-transform: uppercase;
    font-weight: 300;
}

/* --- Responsividade da Página Sobre --- */
@media (max-width: 768px) {
    .historia-content {
        flex-direction: column;
        gap: 30px;
    }

    .historia-image-container {
        flex: none;
    }

    .proposito-card {
        padding: 30px;
        margin: 0 20px;
    }

    .proposito-card h2 {
        font-size: 1.8rem;
    }

    .uniao-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .uniao-content p {
        text-align: center;
    }

    .uniao-content h2 {
        font-size: 2rem;
    }

    .diretoria-header h2 {
        font-size: 2rem;
    }

    .diretoria-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .membro-foto {
        width: 150px;
        height: 150px;
    }

    .sobre-hero-section h1 {
        font-size: 2.5rem;
    }
}

/* --- Seção Eventos Sociais --- */
.eventos-sociais-section {
    background: linear-gradient(rgba(0, 29, 218, 0), rgba(0, 29, 218, 0.2)), url('../images/sobre-events-section.webp') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    text-align: left;
}

.eventos-content {
    max-width: 600px;
}

.eventos-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eventos-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-eventos {
    background-color: #001dda;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-eventos:hover {
    background-color: #ffd700;
    color: #001dda;
}

/* --- Seção Informações AESC --- */
.informacoes-section {
    background-color: #fff;
    padding: 80px 0;
}

.informacoes-header {
    text-align: center;
    margin-bottom: 60px;
}

.informacoes-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001dda;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.informacoes-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.noticia-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.noticia-image {
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-content {
    padding: 25px;
}

.noticia-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.noticia-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-leia-mais {
    background-color: #001dda;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-leia-mais:hover {
    background-color: #ffd700;
    color: #001dda;
}

/* Responsividade das novas seções */
@media (max-width: 768px) {
    .eventos-content h2 {
        font-size: 2rem;
    }
    
    .informacoes-header h2 {
        font-size: 2rem;
    }
    
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Seção Eventos Esportivos --- */
.esportes-section {
    background-color: #ffd700;
    padding: 80px 0;
    position: relative;
}

.esportes-header {
    text-align: center;
    margin-bottom: 60px;
}

.esportes-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001dda;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.esportes-header p {
    font-size: 1.1rem;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

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

.esportes-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.esporte-card {
    flex: 0 0 20%; /* 5 cards por linha */
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.esporte-card:hover {
    transform: translateY(-5px);
}

.esporte-image {
    height: 160px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.esporte-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.esporte-content {
    padding: 20px;
}

.esporte-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001dda;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.esporte-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Controles do Carousel */
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #001dda;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 16px;
}

/* Responsividade da seção esportes */
@media (max-width: 1024px) {
    .esporte-card {
        flex: 0 0 33.33%; /* 3 cards por linha */
    }
}

@media (max-width: 768px) {
    .esportes-header h2 {
        font-size: 2rem;
    }
    
    .esporte-card {
        flex: 0 0 100%; /* 1 card por linha */
        min-width: auto;
    }
    
    .carousel-controls {
        bottom: -60px;
    }
    
    .esportes-section {
        padding-bottom: 120px;
    }
}

/* ===== PÁGINA CONTATO ===== */

/* --- Seção Hero Contato --- */
.contato-hero-section {
    background: linear-gradient(to right, #1556a6, rgba(0, 29, 218, 0)), url('../images/hero-banner.webp') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    height: 90vh;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.contato-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    padding: 0;
    margin-bottom: 20px;
}

.contato-hero-section p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}

.contato-hero-description {
    font-size: 0.8rem!important;
    line-height: 1.8;
    color: rgba(255,255,255,0.9)!important;
    margin-bottom: 25px;
    font-weight: 400!important;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Seção Informações de Contato --- */
.contato-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contato-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /*gap: 30px;*/
    max-width: 100%;
    margin: 0 auto;
}

.contato-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    width:280px;
}

.contato-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #1556a6;
}

.contato-icon {
    width: 80px;
    height: 80px;
    background-color: #001dda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,29,218,0.3);
}

.contato-icon i {
    font-size: 30px;
    color: #fff;
}

.contato-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #001dda;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contato-info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contato-info-card p strong {
    color: #001dda;
    font-weight: 700;
}

/* Responsividade da página de contato */
@media (max-width: 768px) {
    .contato-hero-section {
        height: auto;
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .contato-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contato-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contato-info-card {
        padding: 35px 25px;
    }
    
    .contato-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .contato-icon i {
        font-size: 25px;
    }
    
    .contato-info-card h3 {
        font-size: 1.1rem;
    }
}

/* --- Seção Como Chegar --- */
.como-chegar-section {
    padding: 80px 0;
    background-color: #fff;
}

.como-chegar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.como-chegar-text h2 {
    color: #001dda;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.como-chegar-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #fdd500;
}

.endereco-completo {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #001dda;
}

.endereco-completo p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.endereco-completo strong {
    color: #001dda;
    font-weight: 700;
}

.pontos-referencia,
.acesso-transporte {
    margin-bottom: 30px;
}

.pontos-referencia h3,
.acesso-transporte h3 {
    color: #001dda;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pontos-referencia ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pontos-referencia li {
    margin-bottom: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pontos-referencia li i {
    color: #001dda;
    width: 16px;
    text-align: center;
}

.acesso-transporte p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.como-chegar-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-placeholder {
    background: linear-gradient(135deg, #001dda, #1556a6);
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,29,218,0.2);
    width: 100%;
    max-width: 400px;
}

.mapa-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fdd500;
}

.mapa-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mapa-placeholder p {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.mapa-placeholder .btn {
    background-color: #fdd500;
    color: #001dda;
    border: none;
    padding: 15px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mapa-placeholder .btn:hover {
    background-color: #fff;
    color: #001dda;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsividade da seção Como Chegar */
@media (max-width: 768px) {
    .como-chegar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .como-chegar-text h2 {
        font-size: 1.8rem;
    }
    
    .endereco-completo {
        padding: 20px;
    }
    
    .mapa-placeholder {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .mapa-placeholder i {
        font-size: 3rem;
    }
    
    .mapa-placeholder h3 {
        font-size: 1.3rem;
    }
}

/* ===== FIM DA PÁGINA CONTATO ===== */

/* ===== PÁGINA SOCIAL ===== */

/* --- Seção Hero Social --- */
.social-hero-section {
    background: linear-gradient(rgba(0, 29, 218, 0), rgba(0, 29, 218, 0.1)), url('../images/social-background-hero.webp') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    text-align: left;
    height: 90vh;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.social-hero-section .container {
    margin: 0 0 0 10%;
    max-width: 40% !important;
}

.social-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e4d8b;
    padding:0;
}

.social-hero-section p {
    font-size: 1.2rem;
    color: #333;
    max-width: 330px;
    font-weight: 700;
}

.social-hero-description {
    font-size: 0.8rem!important;
    line-height: 1.8;
    color: #555!important;
    margin-bottom: 25px;
    
}

/* --- Seção Conteúdo Social --- */
.social-content-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    bottom: 120px;
}

.social-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-intro-text {
    flex: 1;
}

.social-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.social-intro-text p:last-child {
    margin-bottom: 0;
}

/* --- Seção Evento em Destaque --- */
.evento-destaque-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.evento-destaque-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: #e5e5e5;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.evento-destaque-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.evento-destaque-info h2 {
    color: #001dda;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.evento-destaque-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.evento-destaque-info > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.evento-destaque-info .btn.btn-primary { 
    background-color: #001dda!important;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.evento-destaque-info.btn-primary:hover {
    background-color: #ffd700;
    color: #001dda;
}

.evento-meta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #001dda;
}

.evento-meta p {
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.evento-meta p:last-child {
    margin-bottom: 0;
}

.btn-large {
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
}

/* --- Seção Social (Grid de Notícias) --- */
.secao-social-section {
    padding: 80px 0;
    background-color: white;
}

.secao-social-header {
    text-align: center;
    margin-bottom: 60px;
}

.secao-social-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001dda;
    margin-bottom: 20px;
}

.secao-social-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.secao-social-header p::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 25px auto 0;
    border-radius: 2px;
}

.social-instagram-section .social-instagram-section-p {
    position: relative;
    margin-bottom: 25px;
}

.social-instagram-section .social-instagram-section-p::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #001dda;
    margin: 25px auto 0;
    border-radius: 2px;
}

.social-noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.social-noticia-image {
    height: 200px;
    overflow: hidden;
}

.social-noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s ease;
}

.social-noticia-card:hover .social-noticia-image img {
    scale: 1.05;
}

.social-noticia-content {
    padding: 25px;
}

.social-noticia-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.social-noticia-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- Seção Instagram Social --- */
.social-instagram-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 80px 0;
    text-align: center;
    color: #333;
}

.social-instagram-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.social-instagram-section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

.social-instagram-section .social-instagram-section-p {
    margin-bottom: 25px;
}

.social-instagram-feed {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-insta-post {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.social-insta-post:hover {
    transform: scale(1.05);
}

.social-insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-instagram-cta .btn-light {
    background: white;
    color: #333;
    border: 2px solid white;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-instagram-cta .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.no-content {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* === PÁGINA ASSOCIAR-SE === */

/* Seção Hero Associar */
.associar-hero-section {
    background: linear-gradient(135deg, rgba(21, 86, 166, 0.9), rgba(52, 152, 219, 0.8)), 
                url('../images/hero-banner.webp') center/cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.associar-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.associar-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.associar-hero-description {
    font-size: 1.1rem !important;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9 !important;
}

/* Seção Por que se Associar */
.porque-associar-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.porque-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1556a6;
    margin-bottom: 50px;
    font-weight: 700;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vantagem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vantagem-icon {
    margin-bottom: 20px;
}

.vantagem-icon i {
    font-size: 3rem;
    color: #1556a6;
}

.vantagem-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

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

/* Seção Convênios Destaque */
.convenios-destaque-section {
    padding: 80px 0;
    background-color: white;
}

.convenios-destaque-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1556a6;
    margin-bottom: 20px;
    font-weight: 700;
}

.convenios-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.convenios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.convenio-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.convenio-card:hover {
    transform: translateY(-5px);
}

.convenio-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.convenio-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.convenio-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.convenios-cta {
    text-align: center;
}

/* Seção Como se Associar */
.como-associar-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.como-associar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.como-associar-text h2 {
    font-size: 2.5rem;
    color: #1556a6;
    margin-bottom: 40px;
    font-weight: 700;
}

.passos-associacao {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.passo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.passo-numero {
    background: #1556a6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.passo-content h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

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

/* Formulário de Associação */
.formulario-associacao {
    position: sticky;
    top: 20px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h3 {
    text-align: center;
    color: #1556a6;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.associacao-form .form-group {
    margin-bottom: 20px;
}

.associacao-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.associacao-form input,
.associacao-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.associacao-form input:focus,
.associacao-form textarea:focus {
    outline: none;
    border-color: #1556a6;
}

.checkbox-group {
    margin: 25px 0 !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Seção Informações Importantes */
.info-importante-section {
    padding: 80px 0;
    background-color: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #1556a6;
}

.info-card h3 {
    color: #1556a6;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.info-card li:before {
    content: '•';
    color: #1556a6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.contato-info i {
    color: #1556a6;
    width: 20px;
}

/* Responsividade - Página Associar */
@media (max-width: 1024px) {
    .como-associar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .formulario-associacao {
        position: static;
    }
}

@media (max-width: 768px) {
    .associar-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .convenios-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px 20px;
    }
}

/* --- Responsividade da Página Social --- */
@media (max-width: 768px) {
    .social-hero-section .container {
        margin: 0 auto;
        max-width: 90% !important;
        text-align: center;
    }
    
    .social-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .social-hero-section p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .social-intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .social-intro-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .evento-destaque-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
        margin: 0 20px;
    }
    
    .evento-destaque-image img {
        height: 200px;
    }
    
    .evento-destaque-info h3 {
        font-size: 1.5rem;
    }
    
    .evento-destaque-info > p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .secao-social-header h2 {
        font-size: 2rem;
    }
    
    .social-noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-instagram-section h2 {
        font-size: 1.8rem;
    }
    
    .social-instagram-feed {
        gap: 20px;
    }
    
    .social-insta-post {
        width: 250px;
        height: 250px;
    }
}

/* ===== PÁGINA SERVIÇOS ===== */

/* --- Seção Hero Serviços --- */
.servicos-hero-section {
    background: linear-gradient(0.25turn, #1556a6, rgba(0, 29, 218, 0.1)), url(../images/servicos-background-hero.webp) no-repeat center center;
    background-size: cover;
    padding: 60px 0 120px;
    text-align: center;
    height: 90vh;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.servicos-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
}

.servicos-hero-section p {
    font-size: 1.2rem;
    color: #fff;
    text-align: center!important;
    font-weight: 700;
}

.servicos-hero-description {
    font-size: 0.8rem!important;
    line-height: 1.8;
    color: rgba(255,255,255,0.9)!important;
    margin-bottom: 25px;
    font-weight: 400!important;
    text-align: center!important;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Seção Associado em Destaque --- */
.associado-destaque-section {
    padding: 40px 0 80px;
    background-color: transparent;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.associado-destaque-content {
    max-width: 1000px;
    margin: 0 auto;
}

.associado-destaque-card {
    background: #001dda;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.associado-destaque-text {
    color: #fff;
    z-index: 2;
    position: relative;
}

.associado-destaque-text h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.associado-destaque-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.associado-destaque-text .btn {
    background-color: #fdd500;
    color: #001dda;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.associado-destaque-text .btn:hover {
    background-color: #fff;
    color: #001dda;
    transform: translateY(-2px);
}

.associado-destaque-image {
    position: relative;
    z-index: 1;
    height: 200px;
}

.associado-destaque-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* --- Seção Vantagens e Benefícios Unificada --- */
.vantagens-beneficios-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    align-items: start;
}


/* Card Principal de Vantagens (Amarelo) */
.vantagens-card {
    background: #fdd500;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vantagens-card h2 {
    color: #001dda;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: left;
    width:70%
}

/* Cards de Benefícios */
.beneficio-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #1556a6;
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.beneficio-icon img {
    width: 40px;
    height: auto;
}

.beneficio-card h3 {
    color: #001dda;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.beneficio-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Seção Esportes Serviços --- */
.servicos-esportes-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/servicos-esportes-background-hero.webp) no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: left;
}

.servicos-esportes-content {
    max-width: 600px;
    margin: 0;
}

.servicos-esportes-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.servicos-esportes-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.servicos-esportes-content .btn {
    background-color: #fdd500;
    color: #001dda;
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.servicos-esportes-content .btn:hover {
    background-color: #fff;
    color: #001dda;
    transform: translateY(-2px);
}

/* --- Seção Instagram Serviços --- */
.servicos-instagram-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.servicos-instagram-section h2 {
    color: #001dda;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto 20px;
}

.servicos-instagram-section-p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.servicos-instagram-feed {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.servicos-insta-post {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.servicos-insta-post:hover {
    transform: scale(1.05);
}

.servicos-insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicos-instagram-cta .btn {
    background-color: #fff;
    color: #001dda;
    border: 2px solid #001dda;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.servicos-instagram-cta .btn:hover {
    background-color: #001dda;
    color: #fff;
}

/* Responsividade da página de serviços */
@media (max-width: 1024px) and (min-width: 769px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .vantagens-card {
        grid-column: span 2;
        min-height: 180px;
        padding: 30px 25px;
    }
    
    .vantagens-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .servicos-hero-section {
        height: auto;
        min-height: 60vh;
        padding: 60px 0 100px;
    }
    
    .servicos-hero-section .container {
        margin: 0;
        max-width: 90% !important;
        text-align: center;
    }
    
    .servicos-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .associado-destaque-section {
        margin-top: -60px;
    }
    
    .associado-destaque-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
        text-align: center;
    }
    
    .associado-destaque-image img {
        
        display: none;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .vantagens-beneficios-section {
    margin-top: -60px;
    }
    
    .vantagens-card {
        grid-column: span 1;
        min-height: 180px;
        padding: 30px 20px;
    }
    
    .vantagens-card h2 {
        font-size: 1.4rem;
    }
    
    .beneficio-card {
        min-height: 160px;
        padding: 20px 15px;
    }
    
    .servicos-esportes-content h2 {
        font-size: 2rem;
    }
    
    .servicos-instagram-section h2 {
        font-size: 1.5rem;
    }
    
    .servicos-instagram-feed {
        flex-direction: column;
        align-items: center;
    }
    
    .servicos-insta-post {
        width: 250px;
        height: 250px;
    }
}

/* ===== PÁGINA DE POLÍTICA DE PRIVACIDADE ===== */

/* Hero Section Privacidade */
.privacy-hero-section {
    background: #001dda;
    background-image: url('../images/privacy-background-hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
}



.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy-hero-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Conteúdo Principal da Privacidade */
.privacy-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    border-radius: 10px;
    border-left: 5px solid #1556a6;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #1556a6;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
}

.privacy-section h3 {
    color: #1556a6;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1556a6;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Seção de Cookies */
.cookies-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.cookies-table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table thead {
    background: linear-gradient(135deg, #1556a6, #003d99);
    color: white;
}

.cookies-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.cookies-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

.cookies-table tbody tr:last-child {
    border-bottom: none;
}

.cookies-table td {
    padding: 20px 15px;
    vertical-align: top;
    border: none;
}

.cookies-table td a {
    color: #1556a6;
    text-decoration: underline;
    word-break: break-word;
}

.cookies-table td a:hover {
    color: #003d99;
    text-decoration: none;
}

.cookie-type {
    margin-bottom: 10px;
}

.cookie-type h4 {
    color: #1556a6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.cookie-status.essential {
    background: #28a745;
    color: white;
}

.cookie-status.performance,
.cookie-status.functionality,
.cookie-status.marketing,
.cookie-status.analytics,
.cookie-status.social {
    background: #ffc107;
    color: #333;
}

/* Informações de Contato */
.privacy-section .contact-info {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.privacy-section .contact-info p {
    margin-bottom: 8px;
    color: #333;
}

.privacy-section .contact-info p:last-child {
    margin-bottom: 0;
}

/* Informações de Contato */
.terms-section .contact-info {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.terms-section .contact-info p {
    margin-bottom: 8px;
    color: #333;
}

.terms-section .contact-info p:last-child {
    margin-bottom: 0;
}

/* Data de Atualização */
.privacy-update {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.privacy-update p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Responsividade para Privacidade */
@media (max-width: 768px) {
    .privacy-hero-section {
        padding: 80px 0 60px;
    }
    
    .privacy-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero-section p {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .privacy-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-intro p {
        font-size: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
        margin: 20px 0 12px 0;
    }
    
    .cookies-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .cookie-type h4 {
        font-size: 1rem;
    }
    
    .cookie-status {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-section h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        margin: 10px;
        padding: 20px 15px;
    }
    
    .cookies-table-container {
        font-size: 0.85rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 12px 8px;
    }
}

/* ===== PÁGINA DE TERMOS DE USO ===== */

/* Hero Section Termos */
.terms-hero-section {
    background: #001dda;
    background-image: url('../images/termosdeuso-hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.terms-hero-content {
    position: relative;
    z-index: 2;
}

.terms-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.terms-hero-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Conteúdo Principal dos Termos */
.terms-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    border-radius: 10px;
    border-left: 5px solid #1556a6;
}

.terms-intro h2 {
    color: #1556a6;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: #1556a6;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.terms-section li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.terms-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1556a6;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Data de Atualização dos Termos */
.terms-update {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.terms-update p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Responsividade para Termos */
@media (max-width: 768px) {
    .terms-hero-section {
        padding: 80px 0 60px;
    }
    
    .terms-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero-section p {
        font-size: 1.1rem;
    }
    
    .terms-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .terms-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .terms-intro h2 {
        font-size: 1.5rem;
    }
    
    .terms-intro p {
        font-size: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-hero-section h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        margin: 10px;
        padding: 20px 15px;
    }
    
    .terms-intro h2 {
        font-size: 1.3rem;
    }
}

/* ===== PÁGINA ESPORTIVA ===== */

/* Hero Section Esportiva */
.sports-hero-section {
    background: linear-gradient(rgba(21, 86, 166, 0.8), rgba(21, 86, 166, 0.8)), url('../images/servicos-esportes-background-hero.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.sports-hero-content {
    position: relative;
    z-index: 2;
}

.sports-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sports-hero-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.95;
}

.sports-hero-description {
    font-size: 1.1rem !important;
    font-weight: 300;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Eventos em Destaque */
.events-destaque-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.events-destaque-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-destaque-header h2 {
    color: #1556a6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.events-destaque-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.events-destaque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 0;
}

.event-destaque-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-destaque-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-destaque-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-destaque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-destaque-card:hover .event-destaque-image img {
    transform: scale(1.05);
}

.event-destaque-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 86, 166, 0.2), rgba(0, 61, 153, 0.4));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.event-destaque-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-destaque-content {
    padding: 30px;
}

.event-destaque-content h3 {
    color: #1556a6;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-destaque-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-destaque-meta {
    margin-bottom: 25px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

.event-meta-item i {
    color: #1556a6;
    width: 20px;
    margin-right: 10px;
}

/* Eventos Disponíveis */
.events-disponiveis-section {
    padding: 80px 0;
    background: white;
}

.events-disponiveis-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-disponiveis-header h2 {
    color: #1556a6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.events-disponiveis-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.events-disponiveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-disponivel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.event-disponivel-image {
    height: 200px;
    overflow: hidden;
}

.event-disponivel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-disponivel-card:hover .event-disponivel-image img {
    transform: scale(1.03);
}

.event-disponivel-content {
    padding: 25px;
}

.event-disponivel-content h3 {
    color: #1556a6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-disponivel-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.event-disponivel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.event-date,
.event-price {
    display: flex;
    align-items: center;
    color: #555;
}

.event-date i,
.event-price i {
    color: #1556a6;
    margin-right: 5px;
    font-size: 0.85rem;
}

.event-price.free {
    color: #28a745;
    font-weight: 600;
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-events i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-events h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.no-events p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Call to Action */
.events-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    border-radius: 15px;
    margin-top: 40px;
}

.events-cta h3 {
    color: #1556a6;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.events-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Instagram Esportiva */
.sports-instagram-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.sports-instagram-section h2 {
    color: #1556a6;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sports-instagram-section-p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sports-instagram-feed {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sports-insta-post {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sports-insta-post:hover {
    transform: scale(1.05);
}

.sports-insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sports-instagram-cta {
    margin-top: 30px;
}

/* Responsividade Esportiva */
@media (max-width: 768px) {
    .sports-hero-section {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .sports-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .sports-hero-section p {
        font-size: 1.1rem;
    }
    
    .sports-hero-description {
        font-size: 1rem !important;
    }
    
    .events-destaque-header h2,
    .events-disponiveis-header h2 {
        font-size: 2rem;
    }
    
    .events-destaque-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-disponiveis-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .event-destaque-content {
        padding: 25px;
    }
    
    .event-disponivel-content {
        padding: 20px;
    }
    
    .events-cta {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .events-cta h3 {
        font-size: 1.5rem;
    }
    
    .sports-instagram-feed {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .sports-insta-post {
        width: 280px;
        height: 280px;
    }
    
    .sports-instagram-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .sports-hero-section h1 {
        font-size: 2rem;
    }
    
    .events-destaque-header h2,
    .events-disponiveis-header h2 {
        font-size: 1.8rem;
    }
    
    .events-disponiveis-grid {
        grid-template-columns: 1fr;
    }
    
    .events-cta h3 {
        font-size: 1.3rem;
    }
    
    .sports-insta-post {
        width: 250px;
        height: 250px;
    }
    
    .sports-instagram-section h2 {
        font-size: 1.6rem;
    }
}

/* ===== SISTEMA DE COOKIES/LGPD ===== */

/* Cookie Notice Popup */
.cookie-notice {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: all !important;
}

/* Quando escondido, forçar display none com !important */
.cookie-notice[style*="display: none"] {
    display: none !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

.cookie-notice.show {
    opacity: 1;
}

.cookie-notice-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(5px);
    z-index: 1 !important;
}

.cookie-notice-container {
    position: relative !important;
    background: white !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    max-height: 90vh;
    margin: 20px;
    overflow: hidden;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    z-index: 10 !important;
}

.cookie-notice.show .cookie-notice-container {
    transform: translateY(0);
}

.cookie-notice-header {
    background: linear-gradient(135deg, #1556a6, #003d99);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-notice-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-notice-header i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cookie-notice-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cookie-notice-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-notice-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-notice-body > p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-categories {
    margin-bottom: 25px;
}

.cookie-category {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cookie-category.essential {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-color: #28a745;
}

.cookie-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: #1556a6;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.essential-slider {
    background-color: #28a745 !important;
    opacity: 0.8;
    cursor: not-allowed;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-status {
    display: inline-block;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.cookie-category.essential .cookie-status {
    background: #28a745;
    color: white;
}

.cookie-category:not(.essential) .cookie-status {
    background: #ffc107;
    color: #333;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.cookie-notice-links a {
    color: #1556a6;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.cookie-notice-links a:hover {
    color: #003d99;
    text-decoration: underline;
}

.cookie-notice-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #e9ecef;
}

.cookie-notice-footer button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cookie-reject {
    background: #6c757d;
    color: white;
}

.btn-cookie-reject:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn-cookie-accept-selected {
    background: #1556a6;
    color: white;
}

.btn-cookie-accept-selected:hover {
    background: #003d99;
    transform: translateY(-1px);
}

.btn-cookie-accept-all {
    background: #28a745;
    color: white;
}

.btn-cookie-accept-all:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    background: #1556a6 !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 20px !important;
    cursor: pointer !important;
    user-select: none !important;
    box-shadow: 0 5px 20px rgba(21, 86, 166, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    z-index: 100000 !important;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: all !important;
    outline: none !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.cookie-settings-btn.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.cookie-settings-btn:hover {
    background: #003d99 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(21, 86, 166, 0.5) !important;
}

.cookie-settings-btn:active {
    transform: translateY(-1px) !important;
    background: #002b6b !important;
}

/* Força cursor em todos os elementos filhos */
.cookie-settings-btn * {
    cursor: pointer !important;
    pointer-events: none !important;
}

/* Garante que funcione em dispositivos touch */
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
    cursor: pointer !important;
}

.cookie-settings-btn i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.cookie-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cookie-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.cookie-toast-success {
    border-left: 5px solid #28a745;
}

.cookie-toast-error {
    border-left: 5px solid #dc3545;
}

.cookie-toast-info {
    border-left: 5px solid #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.toast-content i {
    font-size: 1.2rem;
}

.cookie-toast-success .toast-content i {
    color: #28a745;
}

.cookie-toast-error .toast-content i {
    color: #dc3545;
}

.cookie-toast-info .toast-content i {
    color: #17a2b8;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: #333;
}

/* Responsividade Cookie Notice */
@media (max-width: 768px) {
    .cookie-notice-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .cookie-notice-header {
        padding: 20px;
    }
    
    .cookie-notice-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-notice-body {
        padding: 20px;
        max-height: 65vh;
    }
    
    .cookie-notice-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .cookie-notice-footer button {
        margin-bottom: 10px;
    }
    
    .cookie-notice-footer button:last-child {
        margin-bottom: 0;
    }
    
    .cookie-notice-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-settings-btn {
        bottom: 15px;
        left: 15px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .cookie-toast {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .cookie-notice-container {
        margin: 5px;
        border-radius: 15px;
    }
    
    .cookie-notice-header h3 {
        font-size: 1.1rem;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-header {
        gap: 12px;
    }
    
    .cookie-switch {
        width: 45px;
        height: 25px;
    }
    
    .slider:before {
        height: 17px;
        width: 17px;
        left: 4px;
        bottom: 4px;
    }
    
    input:checked + .slider:before {
        transform: translateX(20px);
    }
}

/* ===== SEÇÃO LGPD ACTIONS (PÁGINA PRIVACIDADE) ===== */

.lgpd-actions {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 40px !important;
    border: 2px solid #1556a6;
    margin: 40px 0 !important;
}

.lgpd-actions h2 {
    color: #1556a6 !important;
    text-align: center;
    margin-bottom: 15px !important;
    font-size: 1.8rem !important;
}

.lgpd-actions > p {
    text-align: center;
    margin-bottom: 35px !important;
    color: #555;
    font-size: 1.1rem;
}

.lgpd-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.lgpd-action-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.lgpd-action-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1556a6, #003d99);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(21, 86, 166, 0.3);
}

.lgpd-action-card h4 {
    color: #1556a6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.lgpd-action-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.lgpd-action-card .btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: 2px solid #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

/* Responsividade LGPD Actions */
@media (max-width: 768px) {
    .lgpd-actions {
        padding: 25px !important;
        margin: 25px 0 !important;
    }
    
    .lgpd-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lgpd-action-card {
        padding: 25px 20px;
    }
    
    .lgpd-action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .lgpd-action-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .lgpd-actions {
        padding: 20px !important;
        border-radius: 10px;
    }
    
    .lgpd-action-card {
        padding: 20px 15px;
    }
    
    .lgpd-action-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .lgpd-actions h2 {
        font-size: 1.5rem !important;
    }
}

/* ===== SISTEMA DE BUSCA DO HEADER ===== */

/* Modal de Busca */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-container {
    transform: translateY(0);
}

/* Header da Busca */
.search-header {
    background: linear-gradient(135deg, #1556a6, #003d99);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.search-header h3 i {
    margin-right: 10px;
    color: #ffd700;
}

.search-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Formulário de Busca */
.search-form {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input-group input:focus {
    border-color: #1556a6;
}

.search-btn {
    background: #1556a6;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #003d99;
}

/* Filtros de Busca */
.search-filters {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.filter-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.filter-item input[type="checkbox"] {
    display: none;
}

.filter-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #1556a6;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-item input[type="checkbox"]:checked + .checkmark {
    background: #1556a6;
}

.filter-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Resultados da Busca */
.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 25px;
}

.search-placeholder {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

.search-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

.search-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

/* Item de Resultado */
.search-result-item {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: #1556a6;
    box-shadow: 0 5px 15px rgba(21, 86, 166, 0.1);
    transform: translateY(-2px);
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.search-result-type {
    background: #1556a6;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.search-result-type.evento {
    background: #28a745;
}

.search-result-type.noticia {
    background: #007bff;
}

.search-result-date {
    color: #666;
    font-size: 0.9rem;
}

.search-result-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.search-result-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.search-result-link {
    color: #1556a6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.search-result-link:hover {
    text-decoration: underline;
}

/* Loading da Busca */
.search-loading {
    text-align: center;
    padding: 30px;
    color: #666;
}

.search-loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
    color: #1556a6;
    margin-bottom: 10px;
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.search-no-results i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ddd;
}

/* Responsive da Busca */
@media (max-width: 768px) {
    .search-container {
        width: 95%;
        margin: 20px auto;
    }
    
    .search-header {
        padding: 15px 20px;
    }
    
    .search-header h3 {
        font-size: 1.1rem;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .search-results {
        padding: 15px 20px;
    }
    
    .search-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .search-modal {
        padding-top: 20px;
    }
    
    .search-container {
        margin: 10px;
        width: calc(100% - 20px);
    }
}

/* Highlight de resultados */
.search-result-item mark {
    background: #ffd700;
    color: #333;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Animação para resultados */
.search-result-item {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.search-result-item:nth-child(1) { animation-delay: 0.1s; }
.search-result-item:nth-child(2) { animation-delay: 0.2s; }
.search-result-item:nth-child(3) { animation-delay: 0.3s; }
.search-result-item:nth-child(4) { animation-delay: 0.4s; }
.search-result-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PÁGINA DE EVENTO INDIVIDUAL ===== */

/* Breadcrumb */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    color: #6c757d;
    margin-left: 10px;
    font-weight: bold;
}

.breadcrumb a {
    color: #1556a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #003d99;
}

.breadcrumb .active {
    color: #6c757d;
    font-weight: 500;
}

/* Evento Detail */
.event-detail {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 70vh;
}

.event-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border: 1px solid rgba(21, 86, 166, 0.1);
}

.event-header {
    position: relative;
    overflow: hidden;
}

.event-category {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
}

.category-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.category-social { 
    background: linear-gradient(135deg, #28a745, #20c997); 
}

.category-esportivo { 
    background: linear-gradient(135deg, #007bff, #0056b3); 
}

.category-cultural { 
    background: linear-gradient(135deg, #6f42c1, #563d7c); 
}

.category-reuniao { 
    background: linear-gradient(135deg, #fd7e14, #e96500); 
}

.category-assembleia { 
    background: linear-gradient(135deg, #dc3545, #bd2130); 
}

.event-header h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px 40px;
    margin: 0;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(21, 86, 166, 0.1), transparent);
    z-index: 1;
}

.event-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-image:hover img {
    transform: scale(1.05);
}

.event-info {
    padding: 40px;
}

.event-details {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 5px solid #1556a6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 86, 166, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(21, 86, 166, 0.1);
}

.detail-item:hover::before {
    opacity: 1;
}

.detail-item i {
    color: #1556a6;
    font-size: 1.4rem;
    margin-top: 5px;
    background: linear-gradient(135deg, #1556a6, #003d99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1556a6;
    font-weight: 600;
    font-size: 1.1rem;
}

.detail-item p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.detail-item small {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.event-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #1556a6, #003d99);
    border: none;
    box-shadow: 0 10px 25px rgba(21, 86, 166, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 86, 166, 0.4);
}

.btn-outline-primary {
    border: 2px solid #1556a6;
    color: #1556a6;
    background: transparent;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
    background: #1556a6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 86, 166, 0.3);
}

.event-passed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6c757d;
    font-style: italic;
    font-size: 1.1rem;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.event-description {
    padding: 40px;
    border-top: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #fafbfc, #ffffff);
}

.event-description h3 {
    margin: 0 0 25px;
    color: #1556a6;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.event-description h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1556a6, #003d99);
    border-radius: 2px;
}

.description-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    max-width: 700px;
    margin: 0 auto;
}

.event-share {
    padding: 40px;
    border-top: 2px solid #f8f9fa;
    text-align: center;
    background: #fafbfc;
}

.event-share h4 {
    margin-bottom: 25px;
    color: #1556a6;
    font-size: 1.3rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    cursor: pointer;
}

.share-btn.copy-link:hover {
    background: linear-gradient(135deg, #495057, #343a40);
}

.share-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Eventos Relacionados */
.related-events {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.related-events h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1556a6;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.related-events h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1556a6, #003d99);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.related-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(21, 86, 166, 0.1);
}

.related-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(21, 86, 166, 0.15);
}

.related-image {
    position: relative;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
}

.related-content .category-badge {
    font-size: 0.7rem;
    margin-bottom: 15px;
    padding: 5px 15px;
}

.related-content h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-content a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-content a:hover {
    color: #1556a6;
}

.related-date {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-date::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
    .event-detail {
        padding: 40px 0;
    }
    
    .event-content {
        margin: 0 15px 30px;
        border-radius: 15px;
    }
    
    .event-header h1 {
        font-size: 1.8rem;
        padding: 30px 25px 25px;
    }
    
    .event-info {
        padding: 25px;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large, .btn-outline-primary {
        text-align: center;
        justify-content: center;
    }
    
    .event-description {
        padding: 25px;
    }
    
    .event-share {
        padding: 25px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .event-header h1 {
        font-size: 1.5rem;
        padding: 20px;
    }
    
    .detail-item {
        padding: 20px;
        gap: 15px;
    }
    
    .detail-item i {
        font-size: 1.2rem;
    }
    
    .event-info {
        padding: 20px;
    }

    .event-description, .event-share {
        padding: 20px;
    }
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: #0052cc;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #f8f9fa;
    color: #0052cc;
    padding-left: 25px;
}

.mobile-nav i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-menu-actions {
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.mobile-associado-btn {
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Responsividade adicional para menu mobile */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }
}