/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

/* ================= CORES BASE ================= */
body {
  background: linear-gradient(135deg, #5a1a2a 0%, #7d2e40 25%, #9d5a6a 50%, #c9a68a 75%, #f3e9dc 100%);
  background-attachment: fixed;
  color: #1c1c1c;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(125, 46, 64, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(157, 90, 106, 0.2) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(135deg, #3e121c 0%, #591f2a 50%, #7d2e40 100%);
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(243, 233, 220, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: relative;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ================= MENU ================= */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 10;
}

.menu li a {
  color: #f3e9dc;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e2cdb0, #f3e9dc);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu li a:hover::before {
  width: 80%;
}

.menu li a:hover {
  color: #e2cdb0;
  background: rgba(255, 255, 255, 0.05);
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.child {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, rgba(62, 18, 28, 0.98) 0%, rgba(89, 31, 42, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  list-style: none;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(243, 233, 220, 0.1);
  min-width: 180px;
}

.dropdown:hover .child {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.child li a {
  display: block;
  padding: 10px 16px;
  color: #f3e9dc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.child li a:hover {
  background: rgba(243, 233, 220, 0.15);
  transform: translateX(5px);
}

/* ================= BOTÕES FLUTUANTES ================= */
.float-whatsapp,
.float-instagram {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.float-whatsapp {
  right: 90px;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-instagram {
  right: 20px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.float-whatsapp img,
.float-instagram img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.float-whatsapp:hover,
.float-instagram:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

/* ================= SEÇÕES DE SERVIÇOS ================= */
.servico-section {
  flex: 1;
  max-width: 1100px;
  margin: 80px auto 60px auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 243, 240, 0.95) 0%, rgba(249, 235, 230, 0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(243, 233, 220, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.servico-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.servico-section h2 {
  color: #591f2a;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 20px;
}

.servico-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b46c77, transparent);
  border-radius: 2px;
}

.servico-section h3 {
  color: #3e121c;
  font-size: 1.6rem;
  margin: 35px 0 20px 0;
  font-weight: 600;
  text-align: left;
  padding-left: 15px;
  border-left: 4px solid #b46c77;
}

.servico-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: justify;
  color: #2c2c2c;
  text-indent: 2em;
  hyphens: auto;
}

.servico-section p:first-of-type {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1c1c1c;
  text-indent: 0;
  text-align: center;
  padding: 20px 30px;
  background: rgba(180, 108, 119, 0.08);
  border-radius: 12px;
  border-left: 4px solid #b46c77;
  margin-bottom: 35px;
}

/* Listas dentro das seções */
.servico-section ul {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.servico-section ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2c2c2c;
}

.servico-section ul li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: #b46c77;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Destaques */
.servico-section .destaque {
  background: linear-gradient(135deg, rgba(180, 108, 119, 0.12) 0%, rgba(226, 205, 176, 0.12) 100%);
  padding: 25px 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #b46c77;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.servico-section .destaque p {
  text-indent: 0;
  margin-bottom: 0;
  font-style: italic;
  color: #3e121c;
  font-weight: 500;
}

/* ================= GALERIA DE IMAGENS ================= */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  padding: 20px 0;
}

.galeria_emagrecimento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  padding: 20px 0;
}

.galeria img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: 3px solid rgba(243, 233, 220, 0.4);
}

.galeria_emagrecimento img {
  width: 100%;
  height: 362px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: 3px solid rgba(243, 233, 220, 0.4);
  object-position: center top;
}

.galeria img:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: #b46c77;
}

.galeria_emagrecimento img:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: #b46c77;
}
/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #3e121c 0%, #591f2a 50%, #7d2e40 100%);
  color: #f3e9dc;
  padding: 50px 20px 20px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin-top: auto;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(243, 233, 220, 0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column {
  text-align: left;
  min-width: 200px;
}

.footer-column h6 {
  font-size: 1.1em;
  font-weight: bold;
  color: #e2cdb0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  color: #f3e9dc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 0.95em;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #e2cdb0;
  padding-left: 8px;
}

.footer-separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 233, 220, 0.3), transparent);
  margin: 25px auto;
  width: 80%;
}

.footer-text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(243, 233, 220, 0.9);
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  color: #f3e9dc;
  margin: 0 10px;
  font-size: 1.5em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  transform: scale(1.2) rotate(5deg);
  color: #e2cdb0;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  font-size: 0.9em;
  color: rgba(243, 233, 220, 0.85);
  letter-spacing: 0.5px;
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #f3e9dc;
  right: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(89, 31, 42, 0.98) 0%, rgba(125, 46, 64, 0.98) 100%);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 70px;
    right: -250px;
    width: 250px;
    height: 30vh;
    transition: right 0.3s ease;
    border-radius: 0 0 0 20px;
    text-align: center;
    padding-top: 50px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(243, 233, 220, 0.1);
  }

  .menu.show {
    display: flex;
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= RESPONSIVIDADE ================= */
@media screen and (max-width: 768px) {
  .servico-section {
    padding: 30px 25px;
    margin: 50px 15px;
  }

  .servico-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .servico-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
  }

  .servico-section p {
    font-size: 1rem;
    line-height: 1.7;
    text-indent: 1.5em;
  }

  .servico-section p:first-of-type {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .servico-section ul li {
    font-size: 1rem;
    padding-left: 30px;
  }

  .galeria {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px 0;
  }

  .galeria img {
    height: 250px;
  }

  .servico-section .destaque {
    padding: 20px;
    margin: 25px 0;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 15px 20px;
  }

  .servico-section {
    padding: 25px 20px;
    margin: 40px 10px;
  }

  .servico-section h2 {
    font-size: 1.8rem;
  }

  .servico-section h3 {
    font-size: 1.3rem;
  }
}