@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700&display=swap');

:root {
    --primary-color: #2E4C86;
    --secondary-color: #F4A72F;
    --text-color: #2e2e2e;
    --background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

body h2 {
    font-family: 'Rajdhani', sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 0;
    min-height: 120px;
}

.logo-area {
    background: #f8f9fa;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 60px;
    height: auto;
    margin-right: 1rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: #2e2e2e;
    font-family: 'Barlow Condensed', sans-serif;
}

.associacao {
    font-size: 1rem;
    letter-spacing: 1.2px;
    color: #2e2e2e;
    font-family: 'Barlow Condensed', sans-serif;
}

.header-gradient {
    display: none;
}

.hero {
    padding: 2rem 3rem 4rem 3rem;
    text-align: center;
    background-color: #f8f9fa;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.principles {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.18) 0%, rgba(46,76,134,0.98) 80%),
                linear-gradient(120deg, var(--primary-color) 70%, #22345a 100%);
    color: white;
}

.principles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.principle-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.principle-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.teams {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.teams-container {
    display: flex;
    gap: 2rem;
    max-width: 75vw;
}

.team-card {
    cursor: pointer;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
}

.team-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.team-link:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

.cta-section {
    position: relative;
    background: #181818;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 144%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    z-index: 1;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(46,76,134,0.85) 25%, rgba(46,76,134,0.0) 80%);
    z-index: 2;
}
.cta-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 600px;
    padding: 3rem 2rem;
    text-align: left;
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}
.cta-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: none;
    border: 2px solid #F4A72F;
    color: #F4A72F;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #F4A72F;
    color: #181818;
}

@media (max-width: 768px) {
    .logo-area {
        padding: 16px 12px 16px 12px;
    }
    .logo-text {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-content {
        padding: 2rem 1rem;
    }
    .teams-container {
        flex-direction: column;
        gap: 24px;
    }
    .team-card {
        width: 100%;
        max-width: 100%;
    }
}

.fortaleza-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #f8f9fa;
}
.fortaleza-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.fortaleza-logo {
    height: 150px;
    width: auto;
    display: block;
}
.fortaleza-section .logo-svg {
    width: 80px;
    height: auto;
}
.plus {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0 0.5rem;
}
.fortaleza-text {
    max-width: 500px;
}
.fortaleza-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.fortaleza-text p {
    font-size: 1.2rem;
    color: var(--text-color);
}
@media (max-width: 900px) {
    .fortaleza-section {
        flex-direction: column;
        text-align: center;
    }
    .fortaleza-logos {
        justify-content: center;
    }
    .fortaleza-text {
        margin-top: 1.5rem;
    }
}

.docs-section {
    background: #f8f9fa;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    margin-bottom: 0;
}
.docs-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.docs-icon {
    font-size: 2.2rem;
}
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}
.doc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(46,76,134,0.07);
    padding: 1.3rem 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.2s;
}
.doc-card:hover {
    box-shadow: 0 4px 20px rgba(46,76,134,0.13);
}
.doc-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.doc-pdf-icon {
    font-size: 2rem;
    color: #d12d11;
}
.doc-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
}
.doc-download {
    display: inline-block;
    padding: 0.6rem 1.3rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(244,167,47,0.08);
    transition: background 0.2s, color 0.2s;
}
.doc-download:hover {
    background: #d4881f;
    color: #fff;
}
@media (max-width: 600px) {
    .docs-list {
        gap: 1rem;
    }
    .doc-card {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
        padding: 1.1rem 1rem;
    }
    .docs-section h2 {
        font-size: 1.3rem;
    }
}

.teams-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.membros-section {
    padding: 4rem 2rem;
    /* background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.18) 0%, rgba(244,167,47,0.98) 80%),
                linear-gradient(120deg, var(--secondary-color) 70%, #b88948 100%); */
    color: #2e2e2e;
}
.membros-title {
    text-align: center;
    color: #b88948;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}
.membros-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.membro-card {
    background: #fffbe9;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(244,167,47,0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.membro-card:hover {
    box-shadow: 0 6px 24px rgba(244,167,47,0.18);
}
.membro-foto {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f4a72f;
    margin-bottom: 1.2rem;
    background: #fff;
}
.membro-equipe-nome {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    text-align: center;
}
.membro-equipe-cargo {
    font-size: 1.05rem;
    color: #b88948;
    font-weight: 600;
    margin-bottom: 0.7rem;
    text-align: center;
}
.membro-equipe-descricao {
    font-size: 1rem;
    color: #444;
    text-align: center;
}
@media (max-width: 900px) {
    .membros-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

.sponsors-section {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.35) 0%, rgba(244, 167, 47, 0.78) 80%), linear-gradient(254deg, var(--secondary-color) 70%, #edb65f 26%);
    color: white;
}
/* 244, 167, 47 */

.sponsors-section h2 {
    color: #f8f9fa;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-family: 'Rajdhani', sans-serif;
}
.sponsors-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 60vw;
    justify-content: center;
    margin: 0 auto;
}

.sponsor-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 8px 32px rgba(46,76,134,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    min-width: 120px;
}

.sponsor-card:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 16px 48px rgba(46,76,134,0.32);
}

.sponsor-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    box-shadow: none;
    filter: none;
    border-radius: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.sponsor-card p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .sponsor-logo {
        width: 140px;
        height: 140px;
    }
}

.agradecimento-patrocinadores {
    text-align: center;
    font-size: 1.15rem;
    color: #2e2e2e;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Removendo os estilos da galeria de atletas que foram movidos para athletes-gallery.css */ 