/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Variáveis CSS */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #ff6b35;
    --accent-color: #ffd700;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #f9f9f9;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand span {
    color: var(--gray);
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.placeholder-image {
    width: 400px;
    height: 300px;
    background: var(--light-gray);
    border: 2px dashed var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--gray);
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-phone {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--primary-color);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Sobre Section */
.sobre {
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.diferenciais {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diferencial {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.diferencial i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.diferencial h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.diferencial p {
    color: var(--gray);
    margin: 0;
}

/* Modalidades Section */
.modalidades {
    background: var(--light-gray);
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.modalidade-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.modalidade-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modalidade-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.modalidade-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.modalidade-card ul {
    list-style: none;
    text-align: left;
}

.modalidade-card li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.modalidade-card li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Horários Section */
.horarios {
    background: var(--white);
}

.horarios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.horarios-tabela h3,
.precos-info h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.dia {
    font-weight: 500;
    color: var(--dark-color);
}

.hora {
    color: var(--primary-color);
    font-weight: 500;
}

.info-adicional {
    margin-top: 2rem;
}

.info-adicional h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-adicional ul {
    list-style: none;
}

.info-adicional li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-adicional i {
    color: var(--primary-color);
}

.precos-info p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contato-rapido {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Aula Gratuita Section */
.aula-gratuita {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.aula-gratuita-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aula-gratuita-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.aula-gratuita-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.beneficios-aula {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beneficio i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.aula-form h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Contato Section */
.contato {
    background: var(--light-gray);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
    margin: 0;
}

.mapa iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .placeholder-image {
        width: 300px;
        height: 200px;
    }
    
    .sobre-content,
    .horarios-content,
    .aula-gratuita-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modalidades-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contato-rapido {
        align-items: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .aula-gratuita-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .placeholder-image {
        width: 250px;
        height: 150px;
    }
    
    .placeholder-image i {
        font-size: 2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.section-header,
.modalidade-card,
.form-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Estilos para seção da equipe */
.equipe-section {
    margin: 2rem 0;
}

.equipe-section h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.membro-equipe {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.membro-equipe strong {
    display: block;
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.membro-equipe span {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .equipe-grid {
        grid-template-columns: 1fr;
    }
}


/* Estilos para membros da equipe na página feminina */
.team-members {
    margin: 2rem 0;
}

.member {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.member h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.member p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}


/* Estilos para galeria */
.galeria {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.galeria-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Ajustes para nav-brand com logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand img {
    height: 50px;
    width: auto;
}

.nav-brand div h1 {
    margin: 0;
    font-size: 1.2rem;
}

.nav-brand div span {
    font-size: 0.8rem;
    color: var(--gray);
}


/* Estilos para Muay Thai Infantil */
.muay-thai-infantil {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 4rem 0;
}

.infantil-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.infantil-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.beneficio {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.beneficio i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.beneficio h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.beneficio p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.infantil-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.info-item strong {
    color: #ffd700;
}

.placeholder-infantil {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.placeholder-infantil i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.placeholder-infantil p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.placeholder-infantil small {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .infantil-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .infantil-beneficios {
        grid-template-columns: 1fr;
    }
}

