/* LealCred — design aligned with Lovable preview */

:root {
  --radius: 0.75rem;
  --background: #fafafa;
  --foreground: #2a2f3a;
  --card: #ffffff;
  --primary: #e87a2a;
  --primary-soft: rgba(232, 122, 42, 0.12);
  --navy: #2a2f3a;
  --navy-foreground: #fafafa;
  --secondary: #f3f3f5;
  --muted: #f3f3f5;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --whatsapp: #25d366;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Libre Baskerville", ui-serif, Georgia, "Times New Roman", serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

em {
  font-style: italic;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: var(--navy);
}

.logo__word {
  position: relative;
  display: inline-block;
}

.logo__name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1em;
}

.logo__pre,
.logo__mid,
.logo__post {
  display: inline;
}

/* Arc from the business card — authentic curvature */
.logo__mid {
  position: relative;
  display: inline-block;
  padding-top: 0.55em;
}

.logo__arc {
  position: absolute;
  left: -4%;
  width: 112%;
  top: 0;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.logo__tag {
  margin-top: 0.35rem;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(12px);
}

.nav__inner {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav .logo {
  font-size: 1.5rem;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav__links a {
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav__links {
    position: absolute;
    inset: 5rem 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    background: rgba(250, 250, 250, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav__links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.95);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 999px;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.9rem;
}

.btn--navy {
  background: var(--navy);
  color: var(--navy-foreground);
}

.btn--navy:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 122, 42, 0.3);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(232, 122, 42, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(232, 122, 42, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--wa {
  color: var(--whatsapp);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(42, 47, 58, 0.82), rgba(42, 47, 58, 0.4), transparent),
    linear-gradient(to top, rgba(42, 47, 58, 0.9), transparent 55%),
    rgba(42, 47, 58, 0.45);
}

.hero__glow {
  position: absolute;
  left: -8rem;
  top: 50%;
  width: min(600px, 70vw);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.5;
  filter: blur(48px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
  padding: 7rem 0;
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .hero__content {
    padding: 10rem 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.badge__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
}

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

.hero p {
  margin: 0 0 2.5rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }
}

/* Partners / Convênios */
.partners {
  border-block: 1px solid var(--border);
  background: var(--secondary);
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.partners__head {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.partners__label {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.partners__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
}

.partners__blocks {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .partners__blocks {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.partners__block {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.partners__block:hover {
  border-color: rgba(232, 122, 42, 0.35);
  box-shadow: 0 10px 28px rgba(232, 122, 42, 0.08);
}

.partners__block h3 {
  margin: 0 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.partners__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners__items li {
  padding: 0.7rem 0.5rem;
  margin: 0 -0.5rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  cursor: default;
  transition: color 0.2s, background 0.2s;
}

.partners__items li:last-child {
  border-bottom: 0;
}

.partners__items li:hover {
  color: var(--primary);
  background: rgba(232, 122, 42, 0.08);
}

.partners__note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted-foreground);
}

.partners__note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partners__note a:hover {
  filter: brightness(0.92);
}

/* Services */
.services {
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.services__head {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.services__head .services__label {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.services__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
}

.services__head h2 + p {
  margin: 0;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.services__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover {
  box-shadow: inset 0 0 0 1px rgba(232, 122, 42, 0.25);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.service-card__icon--orange {
  background: var(--primary-soft);
  color: var(--primary);
}

.service-card__icon--navy {
  background: rgba(42, 47, 58, 0.08);
  color: var(--navy);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.hero__trust {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.info-section {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--background);
}

.info-section--alt {
  background: #f3f1ed;
}

/* Seções fora do menu: menos respiro para não “sumirem” na rolagem */
.info-section--flow {
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}

.info-section--flow .info-section__head {
  margin-bottom: 1.5rem;
}

.info-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.info-section__label {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.info-section__head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--navy);
}

.info-section__head p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.info-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.steps {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  counter-reset: none;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.steps__item {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem;
}

.steps__num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.steps__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.audience-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.audience-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.audience-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.audience-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.audience-card a:hover {
  text-decoration: underline;
}

.benefits {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.benefits li {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(20, 20, 20, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.benefits strong {
  color: var(--navy);
  font-size: 1rem;
}

.benefits span {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
}

.cta-band p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  margin: 0;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--navy);
}

.testimonial figcaption {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.footer__cnpj {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.7);
}

.social-links--footer {
  margin-top: 1rem;
}

.social-links--footer .social-link {
  color: rgba(250, 250, 250, 0.85);
}

.social-links--footer .social-link:hover {
  color: var(--primary);
  background: rgba(232, 122, 42, 0.15);
}

.page-hero {
  padding: clamp(4rem, 10vw, 6rem) 0 3rem;
  background: var(--navy);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  max-width: 18ch;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.page-content .prose {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.page-content .prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--navy);
}

.page-content .prose p,
.page-content .prose li {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.page-content .prose ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}

/* About */
.about {
  background: var(--navy);
  color: var(--navy-foreground);
  padding: clamp(3.5rem, 6vw, 4.5rem) 0;
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2.75rem;
  }
}

.about__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 1.5rem;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.about__copy h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
}

.about__copy h2 em {
  color: var(--primary);
}

.about__copy > p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.7);
  text-wrap: pretty;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0 2rem;
}

.about__points li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.about__bullet {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: rgba(232, 122, 42, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about__bullet::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.about__points strong {
  display: block;
  font-weight: 600;
  color: #fff;
}

.about__points p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.6);
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(250, 250, 250, 0.78);
  padding: 4.5rem 0 0;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.35fr 0.85fr 1.1fr 1.1fr;
    gap: 2rem 2.5rem;
  }
}

.footer .logo {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.logo--light {
  color: #fff;
}

.footer__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.62);
  max-width: 16.5rem;
}

.footer__heading {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.82);
}

.footer__list a {
  color: rgba(250, 250, 250, 0.82);
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--primary);
}

.footer__address {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.72);
}

.footer__map {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 10rem;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #1a1e26;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.map-embed__btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-embed__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer__bottom {
  margin-top: 3.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.62);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom p {
  margin: 0;
}

.contact-section {
  background: #f7f6f3;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.contact-form-wrap {
  width: min(44rem, calc(100% - 4rem));
  margin-inline: auto;
}

.contact-form__label {
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-form__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
}

.contact-form__lead {
  margin: 0 0 2.75rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-form__row {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-form textarea {
  min-height: 7.5rem;
  padding-top: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 122, 42, 0.12);
}

.contact-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
}

.form-privacy {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.contact-form__submit:hover {
  filter: brightness(1.05);
}

.contact-form__submit:active {
  transform: scale(0.98);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
