/* --- VARIÁVEIS E CONFIGURAÇÕES BÁSICAS --- */
:root {
  --primary: #8e44ad;
  --accent: #f1c40f;
  --bg: #fdfaff;
  --dark: #2c3e50;
  --white: #ffffff;
  --whatsapp: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Quicksand', sans-serif; 
    background-color: var(--bg); 
    color: var(--dark); 
    line-height: 1.6; 
    padding-top: 80px; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER E NAVEGAÇÃO --- */
.header-fixo { 
    position: fixed; top: 0; left: 0; width: 100%; height: 80px; 
    background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    z-index: 2000; display: flex; align-items: center; 
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 1.2rem; }
.logo span { font-weight: 400; font-size: 0.8rem; display: block; color: #7f8c8d; }

.menu { display: flex; list-style: none; gap: 15px; align-items: center; }
.menu a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.8rem; transition: 0.3s; }
.menu a:hover:not(.btn-agendar) { color: var(--primary); }

.btn-agendar { 
    background: var(--accent) !important; color: var(--dark) !important; 
    padding: 10px 20px; border-radius: 50px; font-weight: 700 !important; 
    display: flex; align-items: center; gap: 8px; text-decoration: none; 
    box-shadow: 0 3px 0 #d4ac0d; 
}

/* --- BOTÃO HAMBÚRGUER (MOBILE) --- */
.menu-toggle { 
    display: none; background: none; border: none; cursor: pointer; 
    padding: 15px; z-index: 3000; position: relative; 
}

.hamburguer {
    display: block; width: 25px; height: 2px; background: var(--primary); 
    position: relative; transition: 0.3s;
}

.hamburguer::before, .hamburguer::after {
    content: ''; display: block; width: 25px; height: 2px; 
    background: var(--primary); position: absolute; transition: 0.3s;
}

.hamburguer::before { top: -8px; }
.hamburguer::after { bottom: -8px; }

/* --- RESPONSIVIDADE DO MENU (MOBILE) --- */
@media (max-width: 950px) {
  .menu-toggle { display: block; }

  .menu { 
    position: fixed; top: -110%; left: 0; width: 100%; height: 100vh; 
    background: var(--white); padding: 100px 20px; flex-direction: column; 
    transition: 0.6s ease-in-out; z-index: 2500; gap: 25px;
    display: flex; align-items: center; justify-content: center;
  }

  nav.active .menu { top: 0; }
  
  /* Transformação em X */
  nav.active .hamburguer { background: transparent; }
  nav.active .hamburguer::before { transform: rotate(45deg); top: 0; }
  nav.active .hamburguer::after { transform: rotate(-45deg); bottom: 0; }
  
  .menu a { font-size: 1.2rem; }
}

/* --- SLIDESHOW --- */
.slideshow-container { width: 100%; height: 550px; position: relative; overflow: hidden; background: #000; }
.mySlides { display: none; width: 100%; height: 100%; }
.mySlides img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }

.slide-content { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    text-align: center; color: white; width: 85%; z-index: 10; 
}

.slide-content h2 { font-size: 3.5rem; text-shadow: 2px 2px 15px rgba(0,0,0,0.6); margin-bottom: 10px; color: white; }
.slide-content p { font-size: 1.6rem; font-weight: 400; color: white; }

.fade { animation: fadeAnim 1.5s; }
@keyframes fadeAnim { from {opacity: .4} to {opacity: 1} }

@media (max-width: 768px) {
  .slideshow-container { height: 400px; }
  .slide-content h2 { font-size: 2rem; }
  .slide-content p { font-size: 1.1rem; }
}

/* --- SEÇÕES E GRID --- */
section { padding: 100px 0; }
.bg-white { background: var(--white); }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }

@media (max-width: 950px) {
  .grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .texto { text-align: left; }
}

/* --- IMAGENS --- */
.img-padrao { width: 100%; border-radius: 30px; box-shadow: 20px 20px 0px var(--accent); object-fit: cover; }
.img-circular { 
    width: 100%; aspect-ratio: 1/1; border-radius: 50%; 
    border: 8px solid var(--white); outline: 4px solid var(--primary); object-fit: cover; 
}

/* --- TEXTOS --- */
h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 20px; }
.texto p { margin-bottom: 20px; font-size: 1.1rem; color: #444; }
.texto b { color: var(--primary); }

/* --- LISTAS --- */
.lista-beneficios { list-style: none; margin-top: 25px; }
.lista-beneficios li { 
    position: relative; padding-left: 40px; margin-bottom: 18px; 
    font-size: 1.05rem; text-align: left; 
}
.lista-beneficios li::before { 
    content: '✓'; position: absolute; left: 0; top: 2px; width: 26px; height: 26px; 
    background: var(--primary); color: var(--accent); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-weight: bold; 
}

/* --- FORMULÁRIO --- */
.contato-wrapper { background: var(--white); padding: 40px; border-radius: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; padding: 12px; border: 2px solid #f0f0f0; border-radius: 12px; font-family: inherit; 
}
.btn-enviar { 
    background: var(--primary); color: white; border: none; padding: 18px; 
    border-radius: 50px; width: 100%; font-weight: 700; cursor: pointer; transition: 0.3s; 
}
.btn-enviar:hover { background: #732d91; transform: translateY(-2px); }

/* --- WHATSAPP NO TEXTO (CONTATO) --- */
.contato-whatsapp { margin-top: 15px; }
.contato-whatsapp a {
    text-decoration: none !important;
    font-size: 1.6rem; /* Tamanho maior conforme pedido */
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.contato-whatsapp a i { color: var(--whatsapp); font-size: 1.8rem; }

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float { 
    position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp); 
    color: white; width: 65px; height: 65px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 35px; z-index: 9999; text-decoration: none; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: 0.3s; 
}
.whatsapp-float:hover { transform: scale(1.1); }
/* MODAL DE STATUS */
.modal-overlay {
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); 
    z-index: 10000; 
    align-items: center; 
    justify-content: center;
}

.modal-content {
    background: var(--white); 
    padding: 40px; 
    border-radius: 30px; 
    text-align: center;
    max-width: 400px; 
    width: 90%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn { 
    from { transform: scale(0.8); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

#modalIcon { font-size: 60px; margin-bottom: 15px; display: block; }
#modalTitle { color: var(--primary); margin-bottom: 10px; font-size: 1.8rem; }
#modalMessage { margin-bottom: 25px; color: #666; }