:root {
  --color-bg: #fffaf6;
  --color-surface: #ffffff;
  --color-text: #2c2418;
  --color-muted: #6b5346;
  --color-accent: #e0781a;
  --color-accent-dark: #b85a0f;
  --color-accent-soft: #fff0e3;
  --color-border: #f0d9c8;
  --color-wa: #25d366;
  --color-wa-dark: #1da851;
  --color-icon-muted: #595d8f;
  --color-icon-teal: #5ba89a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(224, 120, 26, 0.12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.nav-list a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-text);
}

.nav-list a:hover {
  color: var(--color-accent);
}

.header-cta {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.btn-wa {
  background: var(--color-wa);
  color: #fff;
}

.btn-wa:hover {
  background: var(--color-wa-dark);
  color: #fff;
}

.btn-wa-outline {
  border-color: var(--color-wa);
  color: var(--color-wa-dark);
  background: #fff;
}

.btn-wa-outline:hover {
  background: rgba(37, 211, 102, 0.1);
  color: var(--color-wa-dark);
}

.btn-wa-light {
  background: #fff;
  color: var(--color-wa-dark);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-wa-light:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #128c7e;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    width: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 360px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 0.75rem;
  }
}

.hero-banner {
  position: relative;
  min-height: min(52vh, 520px);
  max-height: 640px;
  background: #1a1510;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 21, 16, 0.75) 0%, rgba(26, 21, 16, 0.35) 55%, rgba(26, 21, 16, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: min(52vh, 520px);
  max-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.hero-banner__tag {
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: #ffb366;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-banner__lead {
  margin: 0 0 1.25rem;
  max-width: 22ch;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ff9933;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-banner__btn {
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.welcome {
  padding-top: 3rem;
  background: radial-gradient(ellipse 120% 80% at 100% 0%, var(--color-accent-soft), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.welcome-inner {
  max-width: 42rem;
}

.map-section {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.map-lead {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  max-width: 55ch;
}

.map-address {
  margin: 0 0 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.map-address-link {
  text-decoration: none;
  color: var(--color-accent-dark);
}

.map-address-link:hover {
  text-decoration: underline;
}

.map-open-wrap {
  margin: 0 0 1.25rem;
}

.map-open-btn {
  display: inline-flex;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow), 0 0 0 4px rgba(224, 120, 26, 0.12);
  background: var(--color-accent-soft);
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

@media (min-width: 900px) {
  .map-embed {
    min-height: 480px;
    aspect-ratio: auto;
    height: min(70vh, 560px);
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.welcome-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 0.85rem;
  color: var(--color-muted);
  max-width: 42ch;
}

.welcome-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  max-width: 20rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
}

.hero-stat {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.hero-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 65ch;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 22px rgba(224, 120, 26, 0.07);
  text-align: center;
}

.feature-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.feature-svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-svg--accent {
  color: #ff8000;
}

.feature-svg--muted {
  color: var(--color-icon-muted);
}

.feature-svg--teal {
  color: var(--color-icon-teal);
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  text-align: left;
}

.services {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.services-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .services-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.75rem;
  }
}

.services-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  line-height: 0;
  background: var(--color-accent-soft);
}

.services-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-copy .section-title {
  margin-top: 0;
}

.service-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-chips li {
  padding: 0.5rem 1rem;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9a4a0a 100%);
  color: #fff;
}

.cta-inner {
  text-align: center;
  padding: 0.5rem 0;
}

.cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.cta-text {
  margin: 0 0 1rem;
  opacity: 0.92;
}

.cta-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.phone-link {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.phone-link:hover {
  color: #ffe8cc;
  text-decoration: underline;
}

.phone-sep {
  opacity: 0.6;
}

.cta-wa-wrap {
  margin: 1.25rem 0 0;
}

.trend-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .trend-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.trend-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(224, 120, 26, 0.06);
}

.trend-card__media {
  line-height: 0;
  background: var(--color-accent-soft);
}

.trend-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trend-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.trend-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.trend-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.5rem;
}

.footer-address {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.footer-map-link {
  color: inherit;
  text-decoration: none;
}

.footer-map-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float__icon {
  width: 1.85rem;
  height: 1.85rem;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}
