/* ============================================
   HARMONIE SANTÉ — V2 Editorial Luxury
   ============================================ */

:root {
  --primary: #BC9B8B;
  --primary-dark: #A07E6E;
  --primary-light: #D4B8AA;
  --secondary: #EBD9BF;
  --secondary-light: #F5EDE0;
  --accent: #F2CF8C;
  --dark: #2C2220;
  --dark-soft: #4A3B37;
  --text: #5C4A44;
  --text-light: #8B7A74;
  --white: #FFFFFF;
  --off-white: #FDFAF7;
  --cream: #F9F3EC;
  --border: rgba(188, 155, 139, 0.15);

  --heading: 'Playfair Display', Georgia, serif;
  --body: 'DM Sans', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.5s;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--primary);
  color: var(--white);
}

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188,155,139,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  display: none;
}

@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

h2 em, h1 em {
  font-style: italic;
  color: var(--primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 34, 32, 0.15);
}

.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.85rem 2rem;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* === Header === */
#header {
  position: relative;
  z-index: 100;
  padding: 1.2rem 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: auto;
}

.logo-icon {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease);
}


.logo-monogram {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.logo-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.logo-text {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

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

.nav-cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.6rem;
  background: var(--dark);
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-menu-content ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu-content a {
  font-family: var(--heading);
  font-size: 1.8rem;
  color: var(--dark);
  transition: color 0.3s;
}

.mobile-menu-content a:hover { color: var(--primary); }

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 34, 32, 0.55) 0%,
    rgba(44, 34, 32, 0.35) 40%,
    rgba(188, 155, 139, 0.2) 100%
  );
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-primary {
  background: var(--primary);
  color: var(--white);
}

.hero .btn-primary:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.metric { text-align: center; }

.metric-num {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}

.metric-plus {
  font-family: var(--heading);
  font-size: 1.2rem;
  color: var(--accent);
}

.metric-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

.metric-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}


/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator { z-index: 2; }

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* === Marquee === */
.marquee-section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.marquee-dot {
  font-size: 0.4rem;
  color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Sections === */
.section { padding: 7rem 0; }

/* === About === */
.about { background: var(--white); }

.about-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.about-card-art {
  border-radius: 16px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}

.about-feat:hover {
  background: var(--secondary-light);
  transform: translateX(4px);
}

.feat-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-feat strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

.about-feat span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === Experiência Harmonie === */
.experiencia {
  background: var(--cream);
}

.experiencia-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0.8rem auto 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 34, 32, 0.06);
  border-color: var(--primary-light);
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-card-highlight {
  background: var(--dark);
  border-color: transparent;
}

.exp-card-highlight h4 {
  color: var(--white);
}

.exp-card-highlight p {
  color: rgba(255, 255, 255, 0.55);
}

.exp-card-highlight:hover {
  border-color: var(--accent);
}

.exp-card-highlight::before {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.exp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}

.exp-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.exp-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.75;
}

.exp-closing {
  text-align: center;
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* === Services === */
.services {
  background: var(--off-white);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 72px auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(235,217,191,0.08), transparent 60%);
}

.service-num {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-light);
}

.service-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.service-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 16px;
  padding: 14px;
  transition: all 0.4s var(--ease);
}

.service-row:hover .service-icon-wrap {
  background: var(--secondary-light);
  transform: scale(1.08);
}

.service-icon {
  width: 100%;
  height: 100%;
}

.service-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  transition: color 0.3s;
}

.service-cta:hover { color: var(--primary-dark); }

/* === Method === */
.method {
  background: var(--dark);
  color: var(--white);
}

.method .section-tag { color: var(--accent); }
.method .section-tag::before { background: var(--accent); }
.method-header { text-align: center; margin-bottom: 4rem; }
.method-header h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); }
.method-header h2 em { color: var(--accent); }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.method-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.method-step:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(242,207,140,0.15);
  transform: translateY(-6px);
}

.step-visual {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
}

.step-num {
  display: block;
  font-family: var(--heading);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.method-step h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.method-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* === Results === */
.results { background: var(--cream); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 34, 32, 0.06);
  border-color: var(--border);
}

.result-quote {
  font-family: var(--heading);
  font-size: 4rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.result-card > p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.result-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.result-author span {
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.result-rating svg { height: 12px; }

/* === CTA Banner === */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-art {
  width: 100%;
  height: 100%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner h2 em { color: var(--accent); }

.cta-inner p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.cta-inner .btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.cta-inner .btn-primary:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(242,207,140,0.3);
}

/* === Contact === */
.contact { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}

.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.contact-left > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.3s var(--ease);
}

.contact-card:hover { background: var(--cream); }

.contact-card svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.social-row {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s var(--ease);
}

.social-btn svg { width: 16px; height: 16px; }

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(188,155,139,0.04);
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.form-header p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group label span {
  font-weight: 400;
  text-transform: none;
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7A74' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* === Footer === */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  height: 34px;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer-logo .logo-divider { background: rgba(255,255,255,0.15); }
.footer-logo .logo-text { color: rgba(255,255,255,0.8); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg { width: 26px; height: 26px; }

/* === Reveal Animations === */
[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive — Tablet === */
@media (max-width: 1024px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-row {
    grid-template-columns: 50px 1fr 72px auto;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: span 2; }
}

/* === Responsive — Mobile === */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Header mobile */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar { padding: 0 1.25rem; }
  .logo-icon { height: 30px; }
  .logo-text { font-size: 0.78rem; }
  .logo-divider { height: 16px; }

  /* Hero mobile */
  .hero {
    min-height: 85vh;
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(44, 34, 32, 0.2) 0%,
      rgba(44, 34, 32, 0.55) 40%,
      rgba(44, 34, 32, 0.75) 100%
    );
  }

  .hero-content {
    padding: 0 1.25rem 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    backdrop-filter: blur(6px);
  }

  .metric-sep { display: none; }

  .metric-num { font-size: 1.5rem; }
  .metric-plus { font-size: 0.9rem; }
  .metric-label { font-size: 0.58rem; letter-spacing: 0.04em; }

  .hero-scroll-indicator { display: none; }

  /* Marquee mobile */
  .marquee-section { padding: 1rem 0; }
  .marquee-content span { font-size: 0.8rem; }
  .marquee-content { gap: 1.5rem; padding-right: 1.5rem; }

  /* About mobile */
  .about-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-img {
    width: 100%;
    height: auto;
  }

  .about-text h2 { font-size: 1.6rem; margin-bottom: 1rem; }
  .about-lead { font-size: 0.92rem; }
  .about-text > p { font-size: 0.85rem; }

  .about-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-feat {
    padding: 0.85rem 1rem;
  }

  .about-feat strong { font-size: 0.78rem; }
  .about-feat span { font-size: 0.7rem; }
  .feat-icon { width: 28px; height: 28px; }

  /* Experiência mobile */
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .exp-card {
    padding: 1.5rem 1.3rem;
  }

  .exp-icon { width: 40px; height: 40px; margin-bottom: 0.8rem; }
  .exp-card h4 { font-size: 0.95rem; }
  .exp-card p { font-size: 0.78rem; }
  .experiencia-intro { font-size: 0.85rem; }
  .exp-closing { font-size: 0.95rem; margin-top: 2rem; }

  /* Services mobile */
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.6rem; }

  .service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 0;
  }

  .service-num {
    font-size: 1rem;
    width: auto;
    margin-right: 0.5rem;
  }

  .service-info {
    flex: 1;
    min-width: 0;
  }

  .service-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
  .service-info p { font-size: 0.8rem; line-height: 1.6; }

  .service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    padding: 10px;
    order: -1;
  }

  .service-cta {
    width: 100%;
    padding-top: 0.4rem;
    font-size: 0.68rem;
  }

  .service-row:hover { padding-left: 0; }

  /* Method mobile */
  .method-header { margin-bottom: 2.5rem; }
  .method-header h2 { font-size: 1.6rem; }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .method-step {
    padding: 1.5rem 1rem;
  }

  .step-visual { width: 70px; height: 70px; margin-bottom: 0.8rem; }
  .step-num { font-size: 0.7rem; margin-bottom: 0.5rem; }
  .method-step h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
  .method-step p { font-size: 0.75rem; line-height: 1.6; }

  /* Results mobile */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .result-card {
    padding: 1.8rem 1.5rem;
  }

  .result-quote { font-size: 3rem; }
  .result-card > p { font-size: 0.85rem; margin-bottom: 1.2rem; }

  /* CTA mobile */
  .cta-banner { padding: 3.5rem 0; }
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-inner p { font-size: 0.88rem; margin-bottom: 2rem; }
  .cta-inner .btn-lg { padding: 0.9rem 2rem; font-size: 0.75rem; }

  /* Contact mobile */
  .contact-left h2 { font-size: 1.6rem; }
  .contact-left > p { font-size: 0.85rem; margin-bottom: 1.5rem; }

  .contact-card { padding: 0.8rem; }
  .contact-card svg { width: 20px; height: 20px; }
  .contact-card strong { font-size: 0.68rem; }
  .contact-card p { font-size: 0.82rem; }

  .social-row { gap: 0.6rem; }
  .social-btn { padding: 0.5rem 1rem; font-size: 0.7rem; }

  .contact-form {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .form-header h3 { font-size: 1.2rem; }
  .form-header p { font-size: 0.78rem; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.8rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Footer mobile */
  .footer { padding: 3rem 0 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 0.5rem;
  }

  .footer-logo-icon { height: 28px; }
  .footer-logo .logo-text { font-size: 0.78rem; }
  .footer-brand p { font-size: 0.78rem; }
  .footer-col h4 { font-size: 0.62rem; margin-bottom: 0.8rem; }
  .footer-col a { font-size: 0.78rem; padding: 0.2rem 0; }
  .footer-bottom { padding: 1.2rem 0; }
  .footer-bottom p { font-size: 0.65rem; }

  /* WhatsApp mobile */
  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg { width: 22px; height: 22px; }

  /* Mobile menu refinements */
  .mobile-menu-content ul { gap: 1.2rem; }
  .mobile-menu-content a { font-size: 1.5rem; }
}

/* === Responsive — Small Mobile === */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 1.9rem; }
  .hero-desc { font-size: 0.82rem; }

  .hero-metrics {
    padding: 0.8rem 0.3rem;
  }

  .metric-num { font-size: 1.3rem; }
  .metric-label { font-size: 0.52rem; }

  .about-text h2,
  .section-header h2,
  .method-header h2,
  .contact-left h2,
  .cta-inner h2 {
    font-size: 1.4rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand { grid-column: span 1; }

  .service-icon-wrap {
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 10px;
  }
}
