@font-face {
  font-family: "Camera";
  src: url("../assets/fonts/CameraPlainVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f8f5ef;
  --color-surface: #fffdf8;
  --color-surface-muted: #f1ece3;
  --color-card: #ffffff;
  --color-text: #211915;
  --color-muted: #71685f;
  --color-border: #e1d8ca;
  --color-brand: #173526;
  --color-brand-2: #214a36;
  --color-accent: #c99537;
  --color-accent-soft: #f3e5c8;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #19b653;
  --font-main: "Camera", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-card: 0 18px 45px rgba(38, 30, 19, 0.08);
  --shadow-elegant: 0 24px 70px rgba(23, 53, 38, 0.18);
  --shadow-whatsapp: 0 14px 30px rgba(37, 211, 102, 0.28);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(225, 216, 202, .72);
  background: rgba(248, 245, 239, .84);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(246, 205, 98, .18), transparent 42%),
    linear-gradient(145deg, #10281d, #183d2b);
  color: #f7d68b;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 12px 28px rgba(17, 50, 34, .16);
  overflow: hidden;
}

.brand-logo-mark img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: var(--color-brand);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  transition: color .18s var(--ease);
}

.main-nav a:hover {
  color: var(--color-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.icon-whatsapp {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-whatsapp::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-28deg);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-brand);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -25% -10% auto -10%;
  z-index: -1;
  height: 520px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 149, 55, .18), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(201, 149, 55, .3);
  border-radius: 999px;
  background: rgba(201, 149, 55, .1);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: ping 1.7s infinite;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--color-brand);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn-primary {
  padding: 17px 28px;
  border-radius: 16px;
  background: var(--color-brand);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-secondary {
  padding: 15px 26px;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  color: var(--color-text);
}

.btn-secondary .icon-whatsapp {
  color: var(--color-whatsapp-dark);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 14px;
}

.hero-checks li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.check {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-brand);
}

.check::after {
  content: "✓";
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 12px;
  font-weight: 900;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background: rgba(23, 53, 38, .06);
}

.hero-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  background: var(--color-surface-muted);
  box-shadow: 0 28px 80px rgba(23, 53, 38, .22);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: rgba(255, 253, 248, .94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-left {
  top: 25%;
  left: -34px;
}

.floating-right {
  right: -34px;
  bottom: 24%;
  animation-delay: .8s;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 149, 55, .16);
  color: var(--color-accent);
}

.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.floating-card small {
  display: block;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: var(--color-brand);
  font-size: 14px;
}

.credentials {
  border-block: 1px solid var(--color-border);
  background: var(--color-surface-muted);
  padding: 34px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credentials-grid div {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(113, 104, 95, .2);
  text-align: center;
}

.credentials-grid div:last-child {
  border-right: 0;
}

.credentials-grid strong {
  color: var(--color-brand);
  font-size: 18px;
}

.credentials-grid span {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading span,
.about-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--color-brand);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-heading p,
.about-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-card);
  padding: 30px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 149, 55, .55);
  box-shadow: var(--shadow-card);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-brand);
  color: var(--color-accent);
  font-size: 23px;
  font-weight: 900;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: var(--color-brand);
}

.service-card h3 {
  margin: 24px 0 0;
  color: var(--color-brand);
  font-size: 20px;
}

.service-card p {
  flex: 1;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--color-brand);
  font-weight: 900;
}

.service-card a span {
  color: var(--color-accent);
  transition: transform .2s var(--ease);
}

.service-card:hover a span {
  transform: translateX(4px);
}

.process-section,
.testimonials-section {
  background: var(--color-surface-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-card);
  padding: 24px 24px 24px 86px;
  box-shadow: var(--shadow-card);
}

.steps span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-accent);
  font-weight: 900;
}

.steps h3 {
  margin: 0;
  color: var(--color-brand);
  font-size: 19px;
}

.steps p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-card {
  overflow: hidden;
  max-width: 430px;
  border-radius: 32px;
  background: var(--color-surface-muted);
  box-shadow: var(--shadow-elegant);
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about-list div {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-card);
  padding: 18px;
}

.about-list strong,
.about-list small {
  display: block;
}

.about-list strong {
  color: var(--color-brand);
  font-size: 14px;
}

.about-list small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonials-grid figure {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

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

.testimonials-grid blockquote {
  flex: 1;
  margin: 20px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

.testimonials-grid figcaption {
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.testimonials-grid strong,
.testimonials-grid span {
  display: block;
}

.testimonials-grid strong {
  color: var(--color-brand);
}

.testimonials-grid span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-card);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0 24px;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 23px 0;
  color: var(--color-brand);
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 850;
}

.faq-item button span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-surface-muted);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-brand);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s var(--ease);
}

.faq-item.active button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 52px 24px 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item.active p {
  display: block;
  animation: fadeUp .28s var(--ease);
}

.final-cta {
  padding: 36px 0 112px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 42px;
  background: var(--color-brand);
  padding: 76px 42px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(201, 149, 55, .18);
  filter: blur(40px);
}

.cta-panel::before {
  top: -110px;
  right: -80px;
}

.cta-panel::after {
  bottom: -120px;
  left: -70px;
}

.cta-panel h2,
.cta-panel p,
.cta-panel a,
.cta-panel small {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  max-width: 610px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
}

.cta-panel .big {
  margin-top: 38px;
  padding: 19px 30px;
  border-radius: 18px;
  font-size: 18px;
}

.cta-panel small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .58);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-muted);
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
}

.site-footer h4 {
  margin: 0 0 18px;
  color: var(--color-brand);
}

.site-footer a {
  display: block;
  margin: 10px 0;
  transition: color .2s var(--ease);
}

.site-footer a:hover {
  color: var(--color-brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
}

.footer-bottom p:last-child {
  letter-spacing: .15em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
  transition: transform .2s var(--ease);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, .4);
  animation: ping 1.8s infinite;
}

.floating-whatsapp .icon-whatsapp {
  width: 26px;
  height: 26px;
}

.reveal {
  animation: fadeUp .7s var(--ease) both;
}

.delay-1 {
  animation-delay: .15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ping {
  75%, 100% {
    opacity: 0;
    transform: scale(2.3);
  }
}

.local-seo {
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 12% 12%, rgba(210, 154, 43, .12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 242, 232, .72));
}

.local-seo-panel {
  padding: 34px;
  border: 1px solid rgba(210, 154, 43, .24);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 60px rgba(38, 30, 19, .08);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.local-seo-grid article {
  padding: 22px;
  border: 1px solid rgba(31, 69, 49, .10);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}

.local-seo-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-brand);
  font-size: 16px;
  line-height: 1.25;
}

.local-seo-grid p,
.local-seo-note {
  color: var(--color-muted);
  line-height: 1.75;
}

.local-seo-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-gold);
  border-radius: 16px;
  background: rgba(210, 154, 43, .10);
}
