/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container do Vídeo */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay escuro para melhor legibilidade */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 15px;
    max-width: 600px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Botão CTA WhatsApp */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #009c3b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
    background-color: #007a2e;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Seção de Diferenciais */
.diferenciais {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: none;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #202C6A;
    margin: 15px auto;
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid;
}

.card:nth-child(1) {
    border-top-color: #009c3b; /* Verde Brasil */
}

.card:nth-child(2) {
    border-top-color: #ffdf00; /* Amarelo Brasil */
}

.card:nth-child(3) {
    border-top-color: #009c3b; /* Verde Brasil */
}

.card:nth-child(4) {
    border-top-color: #ffdf00; /* Amarelo Brasil */
}

.card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card:nth-child(1) .icon-wrapper {
    background: #009c3b; /* Verde Brasil */
}

.card:nth-child(2) .icon-wrapper {
    background: #ffdf00; /* Amarelo Brasil */
}

.card:nth-child(3) .icon-wrapper {
    background: #009c3b; /* Verde Brasil */
}

.card:nth-child(4) .icon-wrapper {
    background: #ffdf00; /* Amarelo Brasil */
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card:nth-child(2) .icon-wrapper i,
.card:nth-child(4) .icon-wrapper i {
    color: #333; /* Texto escuro para ícones em fundo amarelo */
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card:nth-child(1) h3,
.card:nth-child(3) h3 {
    color: #009c3b; /* Verde Brasil */
}

.card:nth-child(2) h3,
.card:nth-child(4) h3 {
    color: #b8860b; /* Dourado escuro para títulos em cards amarelos */
}

.card p {
    color: #666;
    font-size: 1rem;
}

/* Botão CTA Secundário */
.cta-button.secondary {
    background-color: #009c3b;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.cta-button.secondary:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Ajuste do vídeo para dispositivos móveis */
    #hero-video {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }
}

/* Estilos para o Header e Logo */
.main-header {
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo-container {
    max-width: 200px;
    margin-left: 2rem;
}

.main-logo {
    width: 100%;
    height: auto;
}

/* Seção Valores do Esporte */
.valores-esporte {
    background: linear-gradient(135deg, #f0f8f0 0%, #fff8e1 100%);
    padding: 5rem 0;
}

.valores-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.valores-texto {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #009c3b;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.valor-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid;
}

.valor-card:nth-child(1) {
    border-top-color: #009c3b; /* Verde Brasil */
}

.valor-card:nth-child(2) {
    border-top-color: #ffdf00; /* Amarelo Brasil */
}

.valor-card:nth-child(3) {
    border-top-color: #009c3b; /* Verde Brasil */
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.valor-card:nth-child(1) .valor-icon {
    color: #009c3b; /* Verde Brasil */
}

.valor-card:nth-child(2) .valor-icon {
    color: #ffdf00; /* Amarelo Brasil */
}

.valor-card:nth-child(3) .valor-icon {
    color: #009c3b; /* Verde Brasil */
}

.valor-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valor-card:nth-child(1) h3,
.valor-card:nth-child(3) h3 {
    color: #009c3b; /* Verde Brasil */
}

.valor-card:nth-child(2) h3 {
    color: #b8860b; /* Dourado escuro para títulos em cards amarelos */
}

.valor-card p {
    color: #666;
    line-height: 1.5;
}

.valores-cta {
    background-color: #009c3b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.valores-cta:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
}

/* Footer */
.main-footer {
    background-color: #202C6A;
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: white;
    margin: 0.5rem auto;
    border-radius: 2px;
}

/* Logo no Footer */
.logo-col {
    justify-content: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #202C6A;
    transform: translateY(-3px);
}

/* Endereço */
.endereco-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-style: normal;
    line-height: 1.6;
}

.endereco-info i {
    font-size: 1.5rem;
    color: white;
}

.endereco-info p {
    margin: 0;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Media Queries para o Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .endereco-info {
        justify-content: center;
    }

    .endereco-info p {
        text-align: center;
    }
}

/* Seção Galeria */
.galeria {
    padding: 5rem 0;
    background-color: white;
}

.galeria-temas {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 3rem;
}

.tema-galeria {
    text-align: center;
}

.tema-titulo {
    color: #202C6A;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tema-credito {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.foto-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.foto-item:hover .galeria-img {
    transform: scale(1.05);
}

.galeria-cta {
    background-color: #009c3b;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.galeria-cta:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
}

/* Media Queries para a Galeria */
@media (max-width: 992px) {
    .grid-galeria {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-temas {
        gap: 4rem;
    }
}

@media (max-width: 576px) {
    .grid-galeria {
        grid-template-columns: 1fr;
    }

    .galeria-temas {
        gap: 3rem;
    }

    .tema-titulo {
        font-size: 1.75rem;
    }
}

/* Seção Depoimentos */
.depoimentos {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.depoimento-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    transform: translateY(-5px);
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.perfil-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perfil-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #202C6A;
}

.perfil-texto h3 {
    color: #202C6A;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.perfil-texto p {
    color: #666;
    font-size: 0.9rem;
}

.depoimento-header i {
    color: #202C6A;
    font-size: 2rem;
    opacity: 0.2;
}

.depoimento-conteudo {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.depoimento-conteudo p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.depoimentos-cta {
    background-color: #009c3b;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.depoimentos-cta:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
}

/* Media Queries para Depoimentos */
@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .depoimento-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .depoimento-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .perfil-info {
        flex-direction: column;
    }

    .depoimento-conteudo p {
        font-size: 1rem;
        text-align: center;
    }

    .depoimento-header i {
        display: none;
    }
}

/* Seção Contato */
.contato {
    padding: 5rem 0;
    background-color: white;
}

.contato-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contato-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-grupo {
    margin-bottom: 1.5rem;
}

.form-grupo label {
    display: block;
    margin-bottom: 0.5rem;
    color: #202C6A;
    font-weight: 500;
}

.form-grupo input,
.form-grupo select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-grupo input:focus,
.form-grupo select:focus {
    outline: none;
    border-color: #202C6A;
}

.form-grupo input::placeholder {
    color: #adb5bd;
}

.form-cta {
    width: 100%;
    background-color: #009c3b;
    margin-top: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.form-cta:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-flutuante {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-flutuante i {
    font-size: 1.5rem;
}

.whatsapp-flutuante .whatsapp-texto {
    font-weight: 500;
    display: none;
}

.whatsapp-flutuante:hover {
    padding-right: 1.5rem;
    transform: translateY(-5px);
}

.whatsapp-flutuante:hover .whatsapp-texto {
    display: inline;
}

/* Media Queries para Contato */
@media (max-width: 768px) {
    .contato-form {
        padding: 1.5rem;
    }

    .whatsapp-flutuante {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .form-grupo input,
    .form-grupo select {
        font-size: 16px; /* Evita zoom em dispositivos iOS */
    }

    .whatsapp-flutuante {
        padding: 0.8rem;
    }

    .whatsapp-flutuante i {
        font-size: 1.3rem;
    }
}

.contato-info {
    margin-top: 1.5rem;
    color: white;
    text-align: center;
}

.contato-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contato-info i {
    font-size: 1.2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .contato-info {
        margin-top: 1rem;
    }

    .contato-info p {
        justify-content: center;
    }
} 