/* =====================================================
   ELITE FITNESS - ACADEMIA E PERSONAL TRAINER
   Versão com Imagens Reais
   ===================================================== */

/* EDITÁVEL: Cores do tema - Preto, amarelo e vermelho para energia */
:root {
    --primary: #ff2d2d;
    --primary-dark: #cc0000;
    --secondary: #ffd60a;
    --accent: #fff3b0;
    --bg: #0a0a0a;
    --bg-alt: #1a1a1a;
    --text: #ffffff;
    --text-light: #b0b0b0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(255, 45, 45, 0.2);
    --shadow-hover: 0 8px 30px rgba(255, 45, 45, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;    
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-light); margin-bottom: 1rem; }

/* ========== BOTÕES ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: var(--radius);
    font-weight: 600; font-size: 1rem; cursor: pointer;
    transition: var(--transition); border: none; gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 45, 45, 0.5); }

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-secondary:hover { background: var(--secondary); color: var(--bg); }

.btn-whatsapp { background: #25d366; color: var(--white); margin-top: 10px; }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px);
    box-shadow: var(--shadow); z-index: 1000; padding: 15px 0;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a { font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav-menu a:hover { color: var(--primary); }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--text); border-radius: 3px; transition: var(--transition); }

/* ========== HERO COM IMAGEM DE FUNDO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

/* Background com imagem */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content {
    max-width: 700px;
}


.hero-subtitle { font-size: 1.25rem; color: var(--text-light); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.stat { text-align: center; background: rgba(255, 255, 255, 0.1); padding: 20px 30px; border-radius: var(--radius); backdrop-filter: blur(10px); }
.stat-number { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--text-light); }

/* ========== SEÇÕES ========== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header p { font-size: 1.125rem; }

/* ========== SOBRE COM IMAGEM ========== */
.sobre { background: var(--bg-alt); }

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.sobre-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-image:hover .sobre-img {
    transform: scale(1.05);
}

.sobre-text-content { display: flex; flex-direction: column; gap: 30px; }
.sobre-text p { font-size: 1.1rem; line-height: 1.8; }
.sobre-features { display: grid; gap: 20px; }
.feature { display: flex; gap: 20px; align-items: flex-start; background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: var(--radius-sm); }
.feature-icon { font-size: 2rem; flex-shrink: 0; }
.feature h3 { color: var(--text); margin-bottom: 5px; }
.feature p { margin: 0; font-size: 0.9rem; }


/* ========== CONSERTOS COM IMAGENS ========== */
.consertos { background: var(--bg-alt); }
.consertos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.consertos-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consertos-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.consertos-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.consertos-image:hover {
    transform: translateY(-8px);
}

.brand-label {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    font-family: Arial Black, sans-serif;
}

.consertos-content {
    padding: 15px;
    text-align: center;
}

.consertos-content h3 { color: var(--text); margin-bottom: 10px; }
.consertos-content p { font-size: 0.95rem; margin-bottom: 15px; }

.consertos-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.consertos-page.open {
    transform: translateX(0);
}


/* ========== ACESSÓRIOS ========== */
.acessorios { background: var(--bg); }

.acessorios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acessorios-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.acessorios-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.acessorios-item:hover img {
    transform: scale(1.1);
}

.acessorios-legenda {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: left;
}



/* ========== DEPOIMENTOS COM FOTOS ========== */
.depoimentos { background: var(--bg-alt); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.depoimento-card { background: var(--bg-alt); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.1); }
.depoimento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.depoimento-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-info h4 { color: var(--text); margin-bottom: 2px; }
.depoimento-info span { font-size: 0.85rem; color: var(--text-light); }
.depoimento-card > p { font-style: italic; font-size: 0.95rem; line-height: 1.7; }
.depoimento-stars { font-size: 1rem; letter-spacing: 2px; }



/* ========== ORÇAMENTOS ========== */
.orcamentos { background: var(--bg); }
.orcamentos-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.orcamentos-info { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; gap: 20px; align-items: flex-start; }
.info-icon { font-size: 2rem; flex-shrink: 0; }
.info-item h4 { color: var(--text); margin-bottom: 5px; }
.info-item p { margin: 0; }
form{ background: var(--bg-alt); margin:0px; display: flex; align-items: left; flex-direction: column; padding:15px; gap: 15px; height: 59vh; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.titulo-form { color:var(--primary); text-align: center; margin-top: 20px; margin-bottom: 20px; font-size: 2.15rem ; font-size: 800; letter-spacing: 2.5px;}
input {height: 50px;border: 1px solid gray;outline-color: var(--primary) ; padding-left: 5px; border-radius: 5px;}
.aconteceu { border-radius: 5px; height: 90px; padding-left: 5px; outline-color:var(--primary) ; padding-top: 5px;  }
.btn-form {background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.4);}


.ai-agent-area { min-height: 0; padding: 0; }

/* ========== FOOTER ========== */
.footer { background: #050505; color: var(--white); padding: 60px 0 20px; }
.footer-content { text-align: center; margin-bottom: 40px; }
.footer-logo { font-size: 1.75rem; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
.footer-content p { color: rgba(255, 255, 255, 0.7); margin-bottom: 25px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 25px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; justify-content: center; gap: 20px; }
.footer-social a { font-size: 1.5rem; transition: var(--transition); }
.footer-social a:hover { transform: scale(1.2); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 5px; }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

.privacidade { background: #000; padding: 40px 0; }
.privacidade h3 { color: var(--white); margin-bottom: 15px; }
.privacidade p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin: 0; }


/* ================= MODAL (Tabela de Preços) ================= */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;   
}

#detalhesModal {
    z-index: 3000;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: var(--bg-alt);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-close {
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.08);
}

.modal-body {
    padding: 22px;
}

.precos-wrap {
    overflow-x: auto;
}

.precos-table {
    width: 100%;
    border-collapse: collapse;
}

.precos-table thead th {
    text-align: left;
    padding: 12px 16px;
    background: rgba(255, 45, 45, 0.2);                                        
    color: var(--text);                                                            
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Tabela de 4 colunas */
.precos-4col {
    table-layout: auto;
    min-width: 700px;
}

.precos-4col td,
.precos-4col th {
    white-space: nowrap;
    padding: 12px 16px;
    white-space: nowrap; 
    word-break: normal;  
}

/* Modal específico de preços */
.precos-modal-content {
    max-width: 1100px;
    width: 95vw;
}

.precos-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-light);
} 

.item  :hover {
    color: var(--text);
}

.precos-observacao {
    margin-top: 14px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.75);
}

#modelosModal  { z-index: 2500; }
#detalhesModal { z-index: 3000; }

.caixa-link-wpp{
    position: fixed;
    bottom: 15px;
    right: 12px;
}
.link-wpp img{
    width: 60px;   
}

.link-wpp {
    cursor: pointer;
}



