:root {
  --primary: #0b6623;
  --primary-light: #147d2b;
  --muted: #555;
  --bg: #f9f9f9;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px var(--shadow);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  height: 80px; /* aumenta a altura */
  max-height: 80px;
}


nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f0faf2 0%, #ffffff 100%);
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--primary-light);
}

.foto-perfil {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px var(--shadow);
  object-fit: cover;
}

/* Seções */
section {
  padding: 60px 0;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  width: 260px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.testimonials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--shadow);
  font-style: italic;
  max-width: 450px;
}

/* Contato */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contato input, .contato textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contato button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contato button:hover {
  background: var(--primary-light);
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: var(--white);
  padding: 15px;
  border-radius: 50%;
  font-size: 1.7rem;
  box-shadow: 0 4px 10px var(--shadow);
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp:hover {
  background: #1ebe57;
}

/* Responsivo */
@media (max-width: 768px) {

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .foto-perfil {
    margin: 30px auto 0;
    width: 200px;
  }
}


/* SOBRE */
/* SOBRE */
.sobre {
  background: #fffdf7; /* fundo claro com tom quente */
  border-radius: 12px;
  padding: 60px 30px;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.sobre-text {
  text-align: left;
}

.sobre-text h2 {
  color: #b8860b; /* dourado */
  font-size: 2rem;
  margin-bottom: 15px;
}

.sobre-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #5a5a5a;
}

.sobre-lista {
  list-style: none;
  padding: 0;
}

.sobre-lista li {
  margin-bottom: 10px;
  font-weight: 600;
  color: #b8860b; /* dourado */
}

.sobre-lista li::before {
  content: "✔ ";
  color: #daa520; /* dourado mais claro */
}

.sobre-imagem img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3); /* sombra dourada suave */
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre-text {
    text-align: center;
  }
  .sobre-imagem {
    margin-top: 20px;
  }
}

.subtitulo-sobre {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b8860b; /* dourado */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.subtitulo-sobre::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #daa520; /* dourado claro */
  margin: 8px auto 0;
  border-radius: 2px;
}


/* SERVIÇOS */
.servicos {
  text-align: center;
  padding: 60px 20px;
  background: #fffdf7; /* tom claro que harmoniza com dourado */
  border-radius: 12px;
}

.titulo-servicos {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b8860b; /* dourado */
  position: relative;
  display: inline-block;
}

.titulo-servicos::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #daa520; /* dourado claro */
  margin: 10px auto 0;
  border-radius: 2px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px; /* evita ficar largo demais em telas grandes */
  text-align: center; /* deixa conteúdo alinhado */
}


.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15); /* sombra dourada suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  color: #b8860b; /* título dourado */
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card p {
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #fffdf7, #f9f6ec); /* fundo claro com leve dourado */
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #b8860b; /* dourado */
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.2rem;
  color: #5a5a5a;
  margin-bottom: 25px;
}

.btn {
  background: #b8860b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #daa520; /* dourado claro */
}

.hero-image {
  display: flex;
  justify-content: center;
}

.foto-perfil {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3); /* sombra dourada */
  border: 5px solid #f9f6ec; /* borda clara para destaque */
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .foto-perfil {
    width: 220px;
    height: 220px;
    margin-top: 20px;
  }
}


/* DEPOIMENTOS */
.depoimentos {
  text-align: center;
  padding: 60px 20px;
  background: #fffdf7; /* tom claro */
  border-radius: 12px;
}

.titulo-depoimentos {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b8860b; /* dourado */
  position: relative;
  display: inline-block;
}

.titulo-depoimentos::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #daa520;
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center; /* centraliza os cards */
}

.testimonial {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
  text-align: center;
  font-style: italic;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial p {
  color: #444;
  margin-bottom: 15px;
}

.testimonial span {
  display: block;
  font-weight: 600;
  color: #b8860b;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
}


/* CONTATO */
.contato {
  text-align: center;
  padding: 60px 20px;
  background: #fffdf7; /* tom claro */
  border-radius: 12px;
}

.titulo-contato {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b8860b; /* dourado */
  position: relative;
  display: inline-block;
}

.titulo-contato::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #daa520;
  margin: 10px auto 0;
  border-radius: 2px;
}

.form-contato {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contato input,
.form-contato textarea {
  padding: 14px;
  border: 2px solid #e0c97f; /* borda dourada clara */
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #b8860b; /* dourado forte */
  box-shadow: 0 0 6px rgba(184, 134, 11, 0.3);
  outline: none;
}

/* ===== Estilo definitivo para .btn (aplicar em botões e links) ===== */
.btn {
  display: inline-block;
  background-color: #b8860b;   /* dourado principal */
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.12s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* aumentar especificidade para elementos <button> */
button.btn {
  background-color: #b8860b;
  color: #fff;
}

/* hover */
.btn:hover,
button.btn:hover {
  background-color: #daa520; /* dourado mais claro no hover */
  transform: translateY(-3px);
}

/* garantir que não existam regras conflitantes com maior especificidade */
.form-contato button.btn,
.contato button.btn {
  background-color: #b8860b;
  color: #fff;
}


/* ===== Section Avaliação ===== */
/* ===== Section Avaliação ===== */
.avaliacao {
  background: #fdfdfd;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; /* fonte moderna e confiável */
}

.avaliacao h2 {
  font-size: 2rem;
  color: #b8860b; /* dourado */
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.avaliacao p {
  font-size: 1.05rem;
  color: #333; /* mais escuro para melhor leitura */
  margin-bottom: 15px;
  line-height: 1.6; /* aumenta a legibilidade */
}

.avaliacao ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.avaliacao ul li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.avaliacao ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b8860b; /* dourado */
  font-weight: bold;
}



.btn-whatsapp {
  display: inline-block;
  background-color: #25D366; /* verde WhatsApp */
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* leve sombra para destaque */
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px); /* efeito sutil de interação */
}

/* ===== Perfil da Fisioterapeuta ===== */
.perfil-fisioterapeuta {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 35px; /* mais espaço entre imagem e texto */
  margin-top: 40px;
}

.perfil-fisioterapeuta img {
  width: 280px;   /* imagem bem maior */
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #b8860b; /* borda dourada mais marcante */
  box-shadow: 0 8px 22px rgba(184, 134, 11, 0.35); /* sombra mais evidente */
  transition: transform 0.3s ease;
}

.perfil-fisioterapeuta img:hover {
  transform: scale(1.05);
}

.perfil-texto {
  max-width: 500px;
}

.nome-fisio {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.cargo-fisio {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 12px;
}

.curriculo-fisio {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .perfil-fisioterapeuta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .perfil-texto {
    max-width: 100%;
  }
}

/* ===== Seção Vídeo + Perfil ===== */
.video-perfil-content {
  display: flex;
  align-items: center; /* centraliza verticalmente em relação ao vídeo */
  gap: 40px;
  justify-content: center;
}

/* Perfil da fisioterapeuta maior */
.perfil-box {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.perfil-box img {
  width: 220px;  /* maior que antes */
  height: 220px;
  border-radius: 50%;
  border: 5px solid #b8860b;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
  transition: transform 0.3s ease;
}

.perfil-box img:hover {
  transform: scale(1.05);
}

/* Texto e Instagram */
.nome-fisio { font-weight: 700; font-size: 1.5rem; color: #333; margin-bottom: 5px; }
.cargo-fisio { font-size: 1.1rem; color: #555; margin-bottom: 8px; }
.curriculo-fisio { font-size: 1rem; color: #444; line-height: 1.5; margin-top: 10px; }
.instagram-link { display: inline-block; margin: 8px 0; color: #b8860b; font-size: 1.6rem; transition: transform 0.3s ease, color 0.3s ease; }
.instagram-link:hover { transform: scale(1.2); color: #daa520; }

/* Responsivo */
@media (max-width: 992px) {
  .video-perfil-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .video-box video {
    max-width: 100%;
  }

  .perfil-box img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .perfil-box img {
    width: 150px;
    height: 150px;
  }
}

/* ===== Instagram Section ===== */
.instagram {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #fffdf7, #f9f6ec);
  border-radius: 16px;
  margin: 50px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.titulo-instagram {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #b8860b;
  font-weight: 700;
  text-transform: uppercase;
}

.instagram p {
  margin-bottom: 30px;
  font-size: 1.15rem;
  color: #444;
}

.btn-instagram {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(220, 39, 67, 0.3);
}

.btn-instagram i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.45);
}


.foto-destaque {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.curriculo-fisio {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

.curriculo-fisio strong {
  color: #b8860b; /* dourado */
}

.curriculo-fisio br {
  margin-bottom: 6px;
}

/* Logo flutuante visível em todos os dispositivos */
/* Logo flutuante com fundo verde pulsante */
.logo-flutuante {
  position: fixed;        /* acompanha o scroll */
  bottom: 10px;           /* distância do rodapé */
  right: 10px;            /* distância da lateral */
  max-height: 60px;       /* tamanho máximo da logo */
  width: auto;            /* mantém proporção */
  z-index: 10000;         /* sempre na frente */
  border-radius: 50%;     /* círculo */
  padding: 10px;           /* espaço interno ao redor da logo */
  background-color: #25D366; /* verde WhatsApp */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite; /* animação pulsante */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Logo dentro do círculo */
.logo-flutuante img {
  max-height: 40px;
  width: auto;
  border-radius: 50%; /* mantém dentro do círculo */
}

/* Animação pulsante */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(37, 211, 102, 0.9); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
}

/* Tablets */
@media (max-width: 1024px) {
  .logo-flutuante {
    max-height: 50px;
    padding: 8px;
  }
  .logo-flutuante img {
    max-height: 35px;
  }
}

/* Celulares */
@media (max-width: 768px) {
  .logo-flutuante {
    max-height: 45px;
    padding: 6px;
    bottom: 8px;
    right: 8px;
  }
  .logo-flutuante img {
    max-height: 30px;
  }
}

/* Pequenos celulares */
@media (max-width: 480px) {
  .logo-flutuante {
    max-height: 40px;
    padding: 5px;
    bottom: 6px;
    right: 6px;
  }
  .logo-flutuante img {
    max-height: 28px;
  }
}


/* ===== MENU RESPONSIVO (ROBUSTO) =====
   Cole este bloco ao final do style.css */

/* ===== MENU RESPONSIVO ===== */
#menuToggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #b8860b;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
  z-index: 10010;
}

@media (max-width: 768px) {
  #menuToggle {
    display: block;
  }

  nav#menu ul {
    display: none;
  }

  nav#menu.active ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    top: 70px;
    right: 12px;
    min-width: 220px;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    z-index: 10002;
  }

  nav#menu.active ul li {
    list-style: none;
  }

  nav#menu.active ul li a {
    display: block;
    padding: 8px 6px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
  }

  nav#menu.active ul li a:hover {
    color: #b8860b;
  }
}

header {
  z-index: 10005;
  position: sticky;
  top: 0;
}

















