:root {
  --bg: #f6f0e8;
  --bg-soft: #efe4d6;
  --surface: rgba(255, 248, 240, 0.72);
  --surface-strong: #fff7f0;
  --text: #3c2d24;
  --text-soft: #6a574a;
  --terracotta: #b65e3c;
  --terracotta-dark: #8f472d;
  --earth: #8b6a4e;
  --sand: #d9b693;
  --olive: #7d8462;
  --line: rgba(60, 45, 36, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(64, 38, 23, 0.12);
  --shadow-soft: 0 10px 30px rgba(64, 38, 23, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --header-h: 82px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182, 94, 60, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(125, 132, 98, 0.08), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  font-weight: 750;
  margin-bottom: 12px;
}

p.section-text,
.section-header p {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 680px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    background var(--transition),
    border var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  min-height: 52px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(143, 71, 45, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(143, 71, 45, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.grid {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(246, 240, 232, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(52, 34, 23, 0.08);
  border-color: rgba(60, 45, 36, 0.08);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo strong {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--terracotta-dark);
}

.logo span {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 999px;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 20px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(44, 29, 22, 0.72) 0%, rgba(44, 29, 22, 0.45) 34%, rgba(44, 29, 22, 0.18) 58%, rgba(44, 29, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(246, 240, 232, 0.08), rgba(246, 240, 232, 0.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23c87a57' offset='0'/%3E%3Cstop stop-color='%23d9b693' offset='0.42'/%3E%3Cstop stop-color='%238b6a4e' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cpath d='M0 640C120 600 210 580 320 585C480 592 630 710 760 710C900 710 1000 620 1125 610C1300 596 1440 680 1600 650V900H0Z' fill='%23a26143' opacity='.55'/%3E%3Cpath d='M0 520C160 480 220 500 360 470C520 437 600 350 760 350C930 350 1000 455 1170 475C1320 493 1450 440 1600 400V900H0Z' fill='%239b5a3d' opacity='.4'/%3E%3Cpath d='M0 340C170 290 280 330 410 310C580 285 650 180 810 190C980 201 1110 322 1250 320C1380 318 1490 260 1600 220V900H0Z' fill='%23e8d8c4' opacity='.18'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: -3;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(246, 240, 232, 0), var(--bg));
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
  max-width: 760px;
}

.hero-copy .eyebrow {
  color: #f6d7c5;
}

.hero-copy .eyebrow::before {
  background: #f6d7c5;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  max-width: 650px;
  margin-top: 20px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-highlights .badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-panel {
  padding: 28px;
  background: rgba(255, 248, 240, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: var(--white);
  justify-self: end;
  width: min(100%, 440px);
}

.hero-panel h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.hero-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff2ea;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-point strong {
  display: block;
  margin-bottom: 4px;
}

.hero-point span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
}

.stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-visual {
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(26, 17, 13, 0.1), rgba(26, 17, 13, 0.32)),
    linear-gradient(135deg, rgba(182, 94, 60, 0.58), rgba(139, 106, 78, 0.35)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #cf8d66 0%, #ba7551 35%, #9a5d40 65%, #815840 100%);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background:
    linear-gradient(to top, rgba(60, 45, 36, 0.32), transparent),
    radial-gradient(circle at 20% 70%, rgba(125, 132, 98, 0.35), transparent 20%);
}

.about-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  background: rgba(255, 247, 240, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  color: var(--text);
}

.about-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.about-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.about-content .feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 34px;
}

.feature-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-item .dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--sand));
  box-shadow: 0 0 0 6px rgba(182, 94, 60, 0.1);
}

.feature-item p {
  color: var(--text-soft);
}

.audience-box {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(182, 94, 60, 0.1), rgba(125, 132, 98, 0.08));
  border: 1px solid rgba(182, 94, 60, 0.12);
  box-shadow: var(--shadow-soft);
}

.audience-box h3 {
  color: var(--terracotta-dark);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(60, 45, 36, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

/* SERVICES */
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(60, 45, 36, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(182, 94, 60, 0.18);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--terracotta-dark);
  background: linear-gradient(135deg, rgba(182, 94, 60, 0.16), rgba(217, 182, 147, 0.4));
}

.service-card p {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.service-card ul {
  display: grid;
  gap: 9px;
}

.service-card li {
  color: var(--text);
  font-size: 0.96rem;
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* BENEFITS */
.benefits-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.benefits-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(182, 94, 60, 0.12), rgba(255, 255, 255, 0.55)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--header-h) + 26px);
}

.benefits-panel p {
  color: var(--text-soft);
  margin-top: 14px;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  padding: 24px;
  border: 1px solid rgba(60, 45, 36, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.benefit-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(182, 94, 60, 0.12);
  color: var(--terracotta-dark);
  font-weight: 800;
}

.benefit-card p {
  color: var(--text-soft);
}

/* TESTIMONIOS */
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
  border: 1px solid rgba(60, 45, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 6px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(182, 94, 60, 0.1);
  font-family: Georgia, serif;
}

.stars {
  color: var(--terracotta);
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-soft);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--earth));
  flex-shrink: 0;
}

.client strong {
  display: block;
  font-size: 0.98rem;
}

.client span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* CONTACTO */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  padding: 30px;
  border: 1px solid rgba(60, 45, 36, 0.08);
}

.contact-items {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(60, 45, 36, 0.06);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(182, 94, 60, 0.12);
  color: var(--terracotta-dark);
  font-weight: 800;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-item span,
.contact-item a {
  color: var(--text-soft);
  word-break: break-word;
}

.mini-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--terracotta);
  background: rgba(182, 94, 60, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--text-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.form-control {
  width: 100%;
  border: 1px solid rgba(60, 45, 36, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus {
  border-color: rgba(182, 94, 60, 0.5);
  box-shadow: 0 0 0 4px rgba(182, 94, 60, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* FOOTER */
.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(60, 45, 36, 0.08);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--terracotta-dark);
  font-size: 1rem;
}

.footer-brand span,
.footer-copy,
.form-note {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ac66d, #1ea85a);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(20, 108, 59, 0.28);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(20, 108, 59, 0.34);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .benefits-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    justify-self: start;
    width: 100%;
  }

  .benefits-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: rgba(246, 240, 232, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(60, 45, 36, 0.08);
    border-bottom: 1px solid rgba(60, 45, 36, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 998;
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-inner {
    display: grid;
    padding: 18px 0 24px;
    gap: 8px;
  }

  .mobile-menu a {
    padding: 14px 6px;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid rgba(60, 45, 36, 0.06);
  }

  .mobile-menu .btn {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 14px);
    padding-bottom: 84px;
  }

  .hero-grid,
  .hero-stats,
  .services-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p,
  p.section-text,
  .section-header p {
    font-size: 1rem;
  }

  .about-visual {
    min-height: 380px;
  }

  .hero-panel,
  .contact-info,
  .contact-form,
  .benefits-panel,
  .service-card,
  .testimonial-card,
  .benefit-card {
    padding: 24px;
  }

  .about-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights,
  .audience-tags {
    gap: 8px;
  }

  .badge,
  .tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-point {
    grid-template-columns: 40px 1fr;
  }

  .hero-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .stat {
    padding: 16px 14px;
  }

  .stat strong {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
