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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #333333;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Navegação */
.navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    max-width: 600px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.hero-button:active {
    transform: translateY(0);
}

/* Segunda Seção - História */
.history-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
}

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

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

.history-text {
    flex: 1;
    max-width: 600px;
}

.history-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.history-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.history-description strong {
    color: #2c3e50;
    font-weight: 700;
}

.history-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascote-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    animation: mascotBounce 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mascote-img:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes mascotBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Terceira Seção - Bem-vindo e Programas */
.welcome-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
}

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

/* Seção Superior - Bem-vindo */
.welcome-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.welcome-text {
    flex: 1;
    max-width: 600px;
}

.welcome-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #2c3e50;
}

.welcome-subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.welcome-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.welcome-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Seção Inferior - Programas */
.programs-section {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.player-spotlight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.programs-content {
    flex: 1;
    max-width: 600px;
}

.programs-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.programs-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.programs-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.programs-description strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Seção de Parcerias */
.partnerships-section {
    position: relative;
    background-image: url('assets/fundo-clubes.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.partnerships-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.partnerships-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partnerships-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.clubs-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.club-logo {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.logo-img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partnerships-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

/* Seção Estrelas em Ascensão */
.stars-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
}

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

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

.stars-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #2c3e50;
}

.stars-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #555555;
    margin: 0;
}

.stars-collage {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.stars-left,
.stars-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.stars-left:hover,
.stars-right:hover {
    transform: translateY(-5px);
}

.stars-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stars-left:hover .stars-img,
.stars-right:hover .stars-img {
    transform: scale(1.02);
}

/* Seção de Parabéns */
.congratulations-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
}

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

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

.congratulations-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}

.congratulations-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #555555;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.athletes-showcase {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
}

.athlete-card {
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.athlete-card:hover {
    transform: translateY(-10px);
}

.athlete-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.athlete-card:hover .athlete-img {
    transform: scale(1.02);
}

.athlete-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Seção da Frase */
.phrase-section {
    position: relative;
    background-image: url('assets/frase.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
}

.phrase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.phrase-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.phrase-text {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
    letter-spacing: 1px;
}

/* Seção de Artigos do Blog */
.blog-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
}

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

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

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

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

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 15px;
    min-height: 44px;
}

.blog-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #45a049;
}

/* Seção Final - 13 Anos e Formulário */
.final-section {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    padding: 80px 0;
    color: #333333;
}

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

.final-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.final-left {
    flex: 1.2;
}

.final-text {
    margin-bottom: 30px;
}

.final-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.final-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

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

.achievement-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.achievement-number {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 0 10px 0;
}

.achievement-text {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.partnerships-info {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

.partnerships-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.partnerships-text {
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

.final-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.years-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.final-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #555555;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.radio-text {
    font-size: 16px;
}

.form-button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.form-button:active {
    transform: translateY(0);
}

/* Página de Contato */
.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
    min-height: calc(100vh - 200px);
}

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

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

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 20px;
    color: #555555;
    margin: 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-right {
    flex: 1;
}

.addresses-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.addresses-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.address-item {
    margin-bottom: 40px;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.address-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

.map-link {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #4CAF50;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.map-link:hover {
    background-color: #45a049;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4d1a 0%, #0d2e0d 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-phrase {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cccccc;
}

.footer-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.instagram-link {
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    color: #F7931E;
    transition: color 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    color: #ffffff;
    transform: scale(1.1);
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-address {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
}


/* Páginas de Artigos */
.article-main {
    padding: 40px 0;
    background-color: #ffffff;
}

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

.article-header {
    margin-bottom: 40px;
}

.article-image {
    margin-bottom: 30px;
}

.article-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-meta {
    text-align: center;
}

.article-category {
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin: 0;
}

.article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 20px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-footer {
    margin-top: 50px;
    text-align: center;
}

.back-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #45a049;
}

/* Conteúdo principal */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333333;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .logo {
        height: 50px;
    }
    
    /* Hero responsivo */
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    /* História responsivo */
    .history-section {
        padding: 60px 0;
    }
    
    .history-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .history-title {
        font-size: 28px;
    }
    
    .history-description {
        font-size: 16px;
    }
    
    .mascote-img {
        max-height: 300px;
    }
    
    /* Welcome responsivo */
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .welcome-subtitle {
        font-size: 24px;
    }
    
    .welcome-description {
        font-size: 16px;
    }
    
    .team-img {
        max-height: 300px;
    }
    
    .programs-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .programs-title {
        font-size: 28px;
    }
    
    .programs-description {
        font-size: 16px;
    }
    
    .player-img {
        max-height: 300px;
    }
    
    /* Parcerias responsivo */
    .partnerships-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .partnerships-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .clubs-logos {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .club-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .logo-img {
        max-width: 70px;
        max-height: 70px;
    }
    
    .partnerships-description {
        font-size: 16px;
    }
    
    /* Estrelas responsivo */
    .stars-section {
        padding: 60px 0;
    }
    
    .stars-title {
        font-size: 32px;
    }
    
    .stars-subtitle {
        font-size: 18px;
    }
    
    .stars-header {
        margin-bottom: 40px;
    }
    
    .stars-collage {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Parabéns responsivo */
    .congratulations-section {
        padding: 60px 0;
    }
    
    .congratulations-title {
        font-size: 32px;
    }
    
    .congratulations-subtitle {
        font-size: 18px;
    }
    
    .congratulations-header {
        margin-bottom: 40px;
    }
    
    .athletes-showcase {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .athlete-card {
        max-width: 250px;
    }
    
    .athlete-name {
        font-size: 20px;
    }
    
    /* Frase responsivo */
    .phrase-section {
        padding: 100px 0;
        background-attachment: scroll;
    }
    
    .phrase-text {
        font-size: 36px;
    }
    
    .phrase-container {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    /* História mobile */
    .history-section {
        padding: 40px 0;
    }
    
    .history-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .history-description {
        font-size: 14px;
    }
    
    .mascote-img {
        max-height: 250px;
    }
    
    .history-container {
        padding: 0 15px;
    }
    
    /* Welcome mobile */
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-subtitle {
        font-size: 20px;
    }
    
    .welcome-description {
        font-size: 14px;
    }
    
    .team-img {
        max-height: 250px;
    }
    
    .programs-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .programs-description {
        font-size: 14px;
    }
    
    .player-img {
        max-height: 250px;
    }
    
    .welcome-container {
        padding: 0 15px;
    }
    
    /* Parcerias mobile */
    .partnerships-section {
        padding: 60px 0;
    }
    
    .partnerships-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .clubs-logos {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .club-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .logo-img {
        max-width: 55px;
        max-height: 55px;
    }
    
    .partnerships-description {
        font-size: 14px;
    }
    
    .partnerships-container {
        padding: 0 15px;
    }
    
    /* Estrelas mobile */
    .stars-section {
        padding: 40px 0;
    }
    
    .stars-title {
        font-size: 28px;
    }
    
    .stars-subtitle {
        font-size: 16px;
    }
    
    .stars-header {
        margin-bottom: 30px;
    }
    
    .stars-collage {
        gap: 20px;
    }
    
    .stars-container {
        padding: 0 15px;
    }
    
    /* Parabéns mobile */
    .congratulations-section {
        padding: 40px 0;
    }
    
    .congratulations-title {
        font-size: 28px;
    }
    
    .congratulations-subtitle {
        font-size: 16px;
    }
    
    .congratulations-header {
        margin-bottom: 30px;
    }
    
    .athletes-showcase {
        gap: 30px;
    }
    
    .athlete-card {
        max-width: 200px;
    }
    
    .athlete-name {
        font-size: 18px;
    }
    
    .congratulations-container {
        padding: 0 15px;
    }
    
    /* Frase mobile */
    .phrase-section {
        padding: 80px 0;
    }
    
    .phrase-text {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .phrase-container {
        min-height: 120px;
        padding: 0 15px;
    }
    
    /* Blog responsivo */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-title {
        font-size: 14px;
        min-height: 40px;
    }
    
    .blog-img {
        height: 150px;
    }
    
    /* Footer responsivo */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    /* Artigos responsivo */
    .article-title {
        font-size: 24px;
    }
    
    .article-img {
        max-height: 300px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    /* Final responsivo */
    .final-section {
        padding: 60px 0;
    }
    
    .final-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .final-title {
        font-size: 28px;
    }
    
    .final-description {
        font-size: 16px;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievement-number {
        font-size: 28px;
    }
    
    .achievement-text {
        font-size: 13px;
    }
    
    .partnerships-info {
        padding: 15px;
    }
    
    .partnerships-title {
        font-size: 16px;
    }
    
    .partnerships-text {
        font-size: 13px;
    }
    
    .years-img {
        max-height: 300px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Contato responsivo */
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-section,
    .addresses-section {
        padding: 30px;
    }
    
    .form-section-title,
    .addresses-title {
        font-size: 20px;
    }
    
    .address-name {
        font-size: 18px;
    }
    
    .map-container iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    /* História mobile */
    .history-section {
        padding: 40px 0;
    }
    
    .history-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .history-description {
        font-size: 14px;
    }
    
    .mascote-img {
        max-height: 250px;
    }
    
    .history-container {
        padding: 0 15px;
    }
    
    /* Welcome mobile */
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-subtitle {
        font-size: 20px;
    }
    
    .welcome-description {
        font-size: 14px;
    }
    
    .team-img {
        max-height: 250px;
    }
    
    .programs-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .programs-description {
        font-size: 14px;
    }
    
    .player-img {
        max-height: 250px;
    }
    
    .welcome-container {
        padding: 0 15px;
    }
    
    /* Parcerias mobile */
    .partnerships-section {
        padding: 60px 0;
    }
    
    .partnerships-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .clubs-logos {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .club-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .logo-img {
        max-width: 55px;
        max-height: 55px;
    }
    
    .partnerships-description {
        font-size: 14px;
    }
    
    .partnerships-container {
        padding: 0 15px;
    }
    
    /* Estrelas mobile */
    .stars-section {
        padding: 40px 0;
    }
    
    .stars-title {
        font-size: 28px;
    }
    
    .stars-subtitle {
        font-size: 16px;
    }
    
    .stars-header {
        margin-bottom: 30px;
    }
    
    .stars-collage {
        gap: 20px;
    }
    
    .stars-container {
        padding: 0 15px;
    }
    
    /* Parabéns mobile */
    .congratulations-section {
        padding: 40px 0;
    }
    
    .congratulations-title {
        font-size: 28px;
    }
    
    .congratulations-subtitle {
        font-size: 16px;
    }
    
    .congratulations-header {
        margin-bottom: 30px;
    }
    
    .athletes-showcase {
        gap: 30px;
    }
    
    .athlete-card {
        max-width: 200px;
    }
    
    .athlete-name {
        font-size: 18px;
    }
    
    .congratulations-container {
        padding: 0 15px;
    }
    
    /* Frase mobile */
    .phrase-section {
        padding: 80px 0;
    }
    
    .phrase-text {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .phrase-container {
        min-height: 120px;
        padding: 0 15px;
    }
    
    /* Blog mobile */
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-title {
        font-size: 14px;
        min-height: auto;
    }
    
    .blog-img {
        height: 200px;
    }
    
    .blog-container {
        padding: 0 15px;
    }
    
    /* Footer mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Artigos mobile */
    .article-title {
        font-size: 20px;
    }
    
    .article-img {
        max-height: 250px;
    }
    
    .article-content h2 {
        font-size: 18px;
    }
    
    .article-container {
        padding: 0 15px;
    }
    
    /* Final mobile */
    .final-section {
        padding: 40px 0;
    }
    
    .final-content {
        gap: 30px;
    }
    
    .final-title {
        font-size: 24px;
    }
    
    .final-description {
        font-size: 14px;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-item {
        padding: 15px;
    }
    
    .achievement-number {
        font-size: 24px;
    }
    
    .achievement-text {
        font-size: 12px;
    }
    
    .partnerships-info {
        padding: 12px;
    }
    
    .partnerships-title {
        font-size: 14px;
    }
    
    .partnerships-text {
        font-size: 12px;
    }
    
    .years-img {
        max-height: 250px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .form-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .final-container {
        padding: 0 15px;
    }
    
    /* Contato mobile */
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-form-section,
    .addresses-section {
        padding: 20px;
    }
    
    .form-section-title,
    .addresses-title {
        font-size: 18px;
    }
    
    .address-name {
        font-size: 16px;
    }
    
    .address-text {
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 150px;
    }
    
    .contact-container {
        padding: 0 15px;
    }
}
