/* Corpóreo+ - Estética e Beleza */
:root {
  --primary: #B57E76;
  --primary-light: #FDF8F7;
  --text-dark: #333333;
  --white: #FFFFFF;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo-plus {
  font-family: var(--font-sans);
  font-weight: 500;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, background 0.2s;
}

.btn-cta {
  background: var(--primary);
  color: var(--white);
}

.btn-cta:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-hero {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-hero:hover {
  opacity: 0.95;
}

/* Hero */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 7rem 0 5rem;
  margin-top: 4rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.section-title-light {
  color: var(--white);
}

.section-light {
  background: var(--primary-light);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.9;
}

/* Serviço único (Depilação a LED) */
.servicos-single {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card--single {
  max-width: 520px;
  width: 100%;
}

.card--single .card-icon {
  font-size: 2.5rem;
}

.card--single .btn {
  margin-top: 0.5rem;
}

/* Espaço */
.espaco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.espaco-text p {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.espaco-endereco {
  font-weight: 500;
  margin-top: 1rem;
}

.espaco-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.espaco-mapa {
  width: 100%;
  height: 280px;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary-light);
}

.espaco-mapa iframe {
  display: block;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Galeria */
.galeria-sub {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeria-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

.galeria-instagram {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.galeria-instagram a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.galeria-instagram a:hover {
  text-decoration: underline;
}

/* Contato */
.contato-inner {
  text-align: center;
}

.contato-text {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contato-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer-cnpj {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.footer-links {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--text-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #c9958f;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.cookie-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

@media (max-width: 480px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

/* Páginas legais (Política de Privacidade / Termos de Uso) */
.page-content {
  padding: 5rem 0 4rem;
  margin-top: 4rem;
}

.container--text {
  max-width: 720px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.page-updated {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section ul {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-section a:hover {
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }

  .nav.open {
    transform: translateY(0);
  }

  .espaco-inner {
    grid-template-columns: 1fr;
  }

  .espaco-right {
    order: -1;
  }

  .espaco-mapa {
    height: 240px;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .contato-buttons {
    flex-direction: column;
  }

  .contato-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }
}
