/*
Theme Name: HARTEG Negocio 03
Theme URI: https://harteg.pt
Author: HARTEG
Author URI: https://harteg.pt
Description: Tema WordPress conceptual criado pela HARTEG para proposta comercial de website premium, editavel, responsivo e multilingua.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
License URI: https://harteg.pt
Text Domain: harteg-negocio-03
Tags: custom, business, landing-page, responsive, multilingual
*/

/* ========================================
   Estetica & Style Studio — Estilos Premium
   ======================================== */

:root {
  --color-navy: #1A1A2E;
  --color-navy-light: #2A2A4A;
  --color-blush: #F8E1E8;
  --color-rose: #D4A5C3;
  --color-rose-light: #E8B4C8;
  --color-white: #FFFFFF;
  --color-cream: #FAF6F8;
  --color-lavender: #C9A9C7;
  --color-text: #2D2D3A;
  --color-text-light: #6B5B7A;
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.14);
  --shadow-3d: 0 25px 50px rgba(26, 26, 46, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 24px;
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250, 246, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .header-inner { padding: 14px 0; }
.header.scrolled .logo-text,
.header.scrolled .nav-link { color: var(--color-navy); }
.header.scrolled .menu-toggle span { background: var(--color-navy); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon svg { display: block; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition);
}

.nav { display: flex; gap: 36px; }

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 7px;
  border-radius: 4px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.lang-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.lang-link.active {
  color: var(--color-white);
  background: rgba(212, 165, 195, 0.25);
  border-color: rgba(212, 165, 195, 0.4);
}

.header.scrolled .lang-link {
  color: rgba(26, 26, 46, 0.5);
}

.header.scrolled .lang-link:hover {
  color: var(--color-navy);
  background: rgba(26, 26, 46, 0.06);
}

.header.scrolled .lang-link.active {
  color: var(--color-navy);
  background: rgba(212, 165, 195, 0.25);
  border-color: rgba(212, 165, 195, 0.4);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-blush);
  transition: var(--transition);
}

.nav-link:hover { color: var(--color-white); }

.nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.75) 50%, rgba(42,42,74,0.82) 100%);
}

/* Floating decorative elements */
.float-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.float-1 {
  width: 300px; height: 300px;
  background: var(--color-blush);
  top: -5%;
  right: -5%;
  animation: floatDeco 12s ease-in-out infinite;
}

.float-2 {
  width: 200px; height: 200px;
  background: var(--color-rose);
  bottom: 10%;
  left: -3%;
  animation: floatDeco 15s ease-in-out infinite 2s;
}

.float-3 {
  width: 150px; height: 150px;
  background: var(--color-lavender);
  top: 40%;
  right: 20%;
  animation: floatDeco 10s ease-in-out infinite 1s;
}

@keyframes floatDeco {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* 3D Flower */
.flower-3d {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  perspective: 800px;
  z-index: 2;
  opacity: 0.7;
}

.petal {
  position: absolute;
  width: 50px;
  height: 80px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -70px;
  transform-origin: 50% 100%;
  background: linear-gradient(180deg, rgba(248,225,232,0.5), rgba(212,165,195,0.3));
  backdrop-filter: blur(4px);
  border: 1px solid rgba(248, 225, 232, 0.2);
}

.petal-1 { transform: rotate(0deg); }
.petal-2 { transform: rotate(72deg); }
.petal-3 { transform: rotate(144deg); }
.petal-4 { transform: rotate(216deg); }
.petal-5 { transform: rotate(288deg); }

.flower-center {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,195,0.6), rgba(201,169,199,0.3));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
}

.flower-3d {
  animation: flowerRotate 20s linear infinite;
}

@keyframes flowerRotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 165, 195, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 225, 232, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--color-blush);
  margin-bottom: 28px;
}

.stars {
  color: var(--color-rose-light);
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-hours {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hero-hours span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-hours span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-rose);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose), var(--color-lavender));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(212, 165, 195, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 165, 195, 0.55), 0 0 20px rgba(212, 165, 195, 0.2);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid rgba(26, 26, 46, 0.2);
}

.btn-outline:hover {
  background: rgba(212, 165, 195, 0.1);
  border-color: var(--color-rose);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* ========================================
   SOBRE
   ======================================== */

.sobre { background: var(--color-cream); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.sobre-image { position: relative; }

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212, 165, 195, 0.3);
  border-radius: 24px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.sobre-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.horario-list {
  margin-top: 28px;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.05);
}

.horario-item:last-child { border-bottom: none; }

.horario-item span:first-child { color: var(--color-text); font-weight: 500; }
.horario-item span:last-child { color: var(--color-text-light); }

.horario-item.fechado span:last-child { color: var(--color-rose); font-weight: 500; }

/* ========================================
   SERVICOS
   ======================================== */

.servicos {
  background: linear-gradient(to bottom, var(--color-cream), var(--color-white));
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform-style: preserve-3d;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.servico-img {
  height: 180px;
  overflow: hidden;
}

.servico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servico-card:hover .servico-img img {
  transform: scale(1.08);
}

.servico-icon-svg {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(248,225,232,0.5), rgba(201,169,199,0.3));
}

.servico-body {
  padding: 24px;
}

.servico-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.servico-body p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========================================
   GALERIA
   ======================================== */

.galeria { background: var(--color-navy); }
.galeria .section-label { color: var(--color-rose-light); }
.galeria .section-title { color: var(--color-white); font-weight: 300; }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 240px;
  gap: 16px;
}

.galeria-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: var(--transition);
}

.galeria-item.large { grid-row: span 2; }
.galeria-item.wide { grid-column: span 2; }

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galeria-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3d);
}

.galeria-item:hover img { transform: scale(1.08); }

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,26,46,0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-overlay span {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   LOCALIZACAO
   ======================================== */

.localizacao { background: var(--color-cream); }

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.local-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 165, 195, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.local-mapa {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.local-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(0.15);
}

/* ========================================
   AGENDAR (CONTACTO)
   ======================================== */

.agendar {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.agendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.agendar-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.agendar-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-lavender));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.agendar-form-wrapper {
  background: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.agendar-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(26, 26, 46, 0.08);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-navy);
  background: var(--color-cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(212, 165, 195, 0.15);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active { display: block; }

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-lavender));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-nav h4,
.footer-info h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--color-rose-light); }

.footer-info p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.harteg-notice {
  font-size: 0.75rem;
  color: var(--color-rose-light);
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 248, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav.active .nav-link { color: var(--color-navy); font-size: 0.85rem; }
  .menu-toggle { display: flex; }

  .lang-selector {
    display: none;
    position: fixed;
    top: 70px;
    right: 24px;
    z-index: 999;
    background: rgba(250, 246, 248, 0.97);
    backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .lang-selector.mobile-visible {
    display: flex;
  }

  .lang-selector .lang-link {
    color: rgba(26, 26, 46, 0.5);
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .lang-selector .lang-link.active {
    color: var(--color-navy);
    background: rgba(212, 165, 195, 0.25);
    border-color: rgba(212, 165, 195, 0.4);
  }
  
  .flower-3d { display: none; }
  
  .sobre-grid,
  .local-grid,
  .agendar-grid { grid-template-columns: 1fr; }
  
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeria-item.large,
  .galeria-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 26, 46, 0.1);
  }
  .lang-link { font-size: 0.85rem; padding: 6px 12px; }

  .harteg-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .harteg-cookie-text {
    min-width: unset;
  }

  .harteg-cookie-actions {
    justify-content: center;
    width: 100%;
  }

  .harteg-whatsapp-float {
    bottom: 24px;
    right: 16px;
    padding: 12px 16px;
  }

  .harteg-whatsapp-label {
    display: none;
  }

  .harteg-legal-hero {
    padding: 120px 20px 60px;
  }

  .harteg-legal-content {
    padding: 50px 20px;
  }

  .harteg-legal-article h2 {
    font-size: 1.15rem;
  }

  .harteg-404-actions {
    flex-direction: column;
  }

  .harteg-404-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-hours { flex-direction: column; gap: 8px; }
  
  .servicos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  
  .agendar-form-wrapper { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 195, 0.1);
  box-shadow: 0 2px 16px rgba(26, 26, 46, 0.04);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
  border-color: rgba(212, 165, 195, 0.2);
}

.faq-item.is-open {
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.12);
  border-color: rgba(212, 165, 195, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-rose);
}

.faq-q-text {
  flex: 1;
  line-height: 1.4;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 165, 195, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  transition: var(--transition);
}

.faq-item.is-open .faq-q-icon {
  background: linear-gradient(135deg, var(--color-rose), var(--color-lavender));
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 32px 28px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid rgba(212, 165, 195, 0.1);
  padding-top: 20px;
  margin: 0 32px 28px;
}

@media (max-width: 640px) {
  .faq-question { padding: 18px 20px; font-size: 1rem; }
  .faq-answer-inner { margin: 0 20px 20px; padding-top: 16px; }
}

/* ========================================
   COOKIE BANNER (RGPD)
   ======================================== */

.harteg-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  max-width: 640px;
  width: calc(100% - 48px);
  z-index: 9999;
  background: rgba(26, 26, 46, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--color-white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 165, 195, 0.08);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.harteg-cookie-banner:not(.harteg-cookie-hidden) {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.harteg-cookie-banner.harteg-cookie-hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.harteg-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.harteg-cookie-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.harteg-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.harteg-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.harteg-cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-rose), var(--color-lavender));
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(212, 165, 195, 0.35);
}

.harteg-cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 195, 0.5);
}

.harteg-cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.harteg-cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.harteg-cookie-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 165, 195, 0.3);
  padding-bottom: 1px;
  transition: var(--transition);
  white-space: nowrap;
}

.harteg-cookie-link:hover {
  color: var(--color-blush);
  border-bottom-color: var(--color-blush);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.harteg-whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  animation: hartegWhatsAppIn 0.5s ease both;
}

.harteg-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.harteg-whatsapp-float svg {
  flex-shrink: 0;
}

.harteg-whatsapp-label {
  white-space: nowrap;
}

@keyframes hartegWhatsAppIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========================================
   LEGAL PAGES (Privacy + Terms)
   ======================================== */

.harteg-legal-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}

.harteg-legal-hero .section-label {
  color: var(--color-rose);
}

.harteg-legal-hero .section-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.harteg-legal-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.harteg-legal-content {
  background: var(--color-cream);
  padding: 80px 24px;
}

.harteg-legal-content .container {
  max-width: 800px;
}

.harteg-legal-article {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.harteg-legal-article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.harteg-legal-article h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.harteg-legal-article p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.harteg-legal-article ul {
  margin: 12px 0 12px 20px;
  padding: 0;
}

.harteg-legal-article ul li {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 6px;
}

.harteg-legal-article strong {
  color: var(--color-navy);
  font-weight: 600;
}

.harteg-legal-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  opacity: 0.7;
  margin-top: 48px;
  text-align: center;
}

/* ========================================
   404 PAGE
   ======================================== */

.harteg-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, #1e1e3a 100%);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 60px;
}

.harteg-404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.harteg-404-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.harteg-404-float-1 {
  width: 300px;
  height: 300px;
  background: var(--color-blush);
  top: -5%;
  right: -5%;
  animation: floatDeco 12s ease-in-out infinite;
}

.harteg-404-float-2 {
  width: 200px;
  height: 200px;
  background: var(--color-rose);
  bottom: 10%;
  left: -3%;
  animation: floatDeco 15s ease-in-out infinite 2s;
}

.harteg-404-float-3 {
  width: 150px;
  height: 150px;
  background: var(--color-lavender);
  top: 40%;
  right: 20%;
  animation: floatDeco 10s ease-in-out infinite 1s;
}

.harteg-404-content {
  position: relative;
  z-index: 1;
}

.harteg-404-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 200;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 32px;
  opacity: 0.9;
}

.harteg-404-flower {
  width: clamp(50px, 10vw, 90px);
  height: clamp(50px, 10vw, 90px);
  animation: flowerRotate 20s linear infinite;
}

.harteg-404-flower svg {
  width: 100%;
  height: 100%;
}

.harteg-404-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 16px;
}

.harteg-404-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.harteg-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.harteg-404-btn svg {
  flex-shrink: 0;
}

.harteg-404-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.harteg-404-footer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
}
