:root {
  --bg: #fcfaf7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-muted: #f5efe8;
  --text: #1f1d1a;
  --text-soft: #665d52;
  --line: rgba(105, 86, 61, 0.12);
  --line-strong: rgba(209, 110, 32, 0.18);
  --accent: #eb7b2d;
  --accent-deep: #c95c12;
  --shadow: 0 20px 60px rgba(29, 24, 18, 0.08);
  --shadow-soft: 0 12px 30px rgba(29, 24, 18, 0.06);
  --radius: 24px;
  --radius-small: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(235, 123, 45, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.page-shell::before {
  width: 24rem;
  height: 24rem;
  top: 5rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(235, 123, 45, 0.14), transparent 68%);
}

.page-shell::after {
  width: 18rem;
  height: 18rem;
  left: -6rem;
  top: 40rem;
  background: radial-gradient(circle, rgba(31, 29, 26, 0.06), transparent 68%);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 239, 232, 0.48));
  border-top: 1px solid rgba(105, 86, 61, 0.05);
  border-bottom: 1px solid rgba(105, 86, 61, 0.05);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 247, 0.82);
  border-bottom: 1px solid rgba(105, 86, 61, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f6b367);
  box-shadow: 0 0 0 7px rgba(235, 123, 45, 0.12);
}

.brand-text {
  font-size: 1.03rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  margin-left: 0.3rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.32rem auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-heading-compact {
  margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.cta-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.1rem);
  max-width: 12ch;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-heading p,
.hero-text,
.hero-note,
.reason-card p,
.process-card p,
.about-copy p,
.cta-card p,
.contact-copy p,
.form-feedback,
.hero-metrics span,
.service-card p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.hero {
  padding-top: 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 41rem;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #f3a052);
  color: #fff8f1;
  box-shadow: 0 16px 36px rgba(235, 123, 45, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 40px rgba(235, 123, 45, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border-color: rgba(105, 86, 61, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card,
.cta-card,
.contact-form,
.process-card,
.service-card,
.reason-card,
.testimonial-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 31rem);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 241, 0.92)),
    var(--surface);
}

.card-kicker,
.process-step {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(235, 123, 45, 0.1);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-metrics article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.brand-strip {
  padding-top: 1rem;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.brand-slider::before,
.brand-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5.5rem;
  z-index: 1;
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(252, 250, 247, 0));
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(252, 250, 247, 0));
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 1rem;
  animation: marquee 24s linear infinite;
}

.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  min-height: 4.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 235, 0.88));
  border: 1px solid rgba(105, 86, 61, 0.1);
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.service-card {
  padding: 1.5rem;
  min-height: 100%;
  grid-column: span 2;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px rgba(29, 24, 18, 0.1);
}

.service-card h3,
.reason-card h3,
.process-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-card p,
.reason-card p,
.process-card p,
.testimonial-card p {
  margin: 0;
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(235, 123, 45, 0.16), rgba(255, 255, 255, 0.95));
  position: relative;
  overflow: hidden;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  inset: auto;
  background: var(--accent);
  opacity: 0.92;
}

.service-icon-branding::before {
  width: 1.4rem;
  height: 1.4rem;
  left: 0.95rem;
  top: 0.95rem;
  border-radius: 0.45rem;
}

.service-icon-branding::after {
  width: 2.1rem;
  height: 2px;
  left: 0.6rem;
  bottom: 0.8rem;
  border-radius: 999px;
}

.service-icon-leads::before {
  width: 2rem;
  height: 2rem;
  left: 0.62rem;
  top: 0.62rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
}

.service-icon-leads::after {
  width: 0.9rem;
  height: 2px;
  right: 0.55rem;
  bottom: 0.8rem;
  border-radius: 999px;
  transform: rotate(45deg);
}

.service-icon-performance::before {
  width: 2.1rem;
  height: 2.1rem;
  left: 0.55rem;
  bottom: 0.55rem;
  clip-path: polygon(0 100%, 0 75%, 40% 50%, 62% 62%, 100% 10%, 100% 35%, 70% 75%, 42% 63%, 16% 90%);
}

.service-icon-performance::after {
  width: 2px;
  height: 2rem;
  right: 0.6rem;
  top: 0.65rem;
  border-radius: 999px;
}

.service-icon-email::before {
  width: 2rem;
  height: 1.4rem;
  left: 0.63rem;
  top: 0.92rem;
  border-radius: 0.28rem;
}

.service-icon-email::after {
  width: 1.46rem;
  height: 1.46rem;
  left: 0.9rem;
  top: 0.63rem;
  background: transparent;
  border-left: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-45deg);
}

.service-icon-whatsapp::before {
  width: 2rem;
  height: 2rem;
  left: 0.63rem;
  top: 0.52rem;
  border-radius: 50%;
}

.service-icon-whatsapp::after {
  width: 0.8rem;
  height: 0.8rem;
  left: 1.15rem;
  bottom: 0.45rem;
  clip-path: polygon(0 0, 100% 35%, 35% 100%);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.reason-card,
.process-card {
  padding: 1.6rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 237, 0.9));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px rgba(29, 24, 18, 0.1);
}

.testimonial-stars {
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(105, 86, 61, 0.08);
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta strong {
  font-size: 1rem;
}

.testimonial-meta span {
  margin-top: 0.28rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.reason-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(201, 92, 18, 0.5);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-step {
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.about-copy {
  padding: 1.2rem 0 0;
  max-width: 42rem;
}

.cta-band {
  padding-top: 2rem;
}

.cta-card {
  padding: 3rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(235, 123, 45, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 242, 235, 0.96));
}

.cta-card p {
  max-width: 38rem;
  margin: 1.1rem auto 0;
}

.cta-card .button {
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  max-width: 30rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(235, 123, 45, 0.08);
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.04);
  color: var(--text);
  font-weight: 700;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(105, 86, 61, 0.08);
  font-size: 1rem;
}

.contact-form {
  padding: 1.8rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(105, 86, 61, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  resize: vertical;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(235, 123, 45, 0.45);
  box-shadow: 0 0 0 4px rgba(235, 123, 45, 0.1);
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-card {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top, rgba(235, 123, 45, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 243, 237, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.thank-you-message {
  max-width: 34rem;
  margin: 1.4rem auto 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.05rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid rgba(105, 86, 61, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-link,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(105, 86, 61, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-link {
  padding: 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.social-link {
  width: 2.8rem;
}

.footer-link:hover,
.footer-link:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link .social-fill {
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

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

  .hero-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .hero-card {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4.8rem 0;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 25;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .services-grid,
  .reasons-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .brand-pill {
    min-width: 10.5rem;
    min-height: 3.8rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(2.3rem, 12vw, 3rem);
  }

  .hero-card,
  .contact-form,
  .process-card,
  .service-card,
  .reason-card,
  .cta-card,
  .testimonial-card,
  .thank-you-card {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .hero-actions,
  .contact-form .button {
    width: 100%;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
