:root {
  --bg: #f8f4f6;
  --surface: #ffffff;
  --surface-alt: #f3ebef;
  --line: #dcc6cf;
  --text: #23191c;
  --muted: #6a545c;
  --primary: #8e2c33;
  --primary-dark: #911a1a;
  --secondary: #c47c94;
  --soft-detail: #f1def1;
  --shadow: 0 18px 50px rgba(56, 26, 32, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

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

.brand img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 244, 246, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(170, 25, 69, 0.10);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  background: var(--primary);
  color: #fff !important;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-toggle img,
.menu-close img {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100%);
  height: 100vh;
  background: rgba(248, 244, 246, 0.98);
  box-shadow: -24px 0 60px rgba(35, 25, 28, 0.12);
  padding: 24px;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  font-weight: 700;
}

.mobile-nav {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(241, 222, 241, 0.38), transparent 32%),
    linear-gradient(135deg, #faf6f7 0%, #f2eaee 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(170, 25, 69, 0.05);
  filter: blur(8px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 222, 241, 0.75);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-copy p {
  margin-top: 22px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  min-height: 54px;
  padding: 0 24px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(170, 25, 69, 0.20);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 500;
}

.hero-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(480px, 100%);
  padding: 18px;
  border: 1px solid rgba(170, 25, 69, 0.10);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-image-wrap {
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.45), transparent 30%),
    linear-gradient(180deg, #c47c94 0%, #aa1945 58%, #911a1a 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrap img {
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  transform: translateY(20px);
}

.trust-bar {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(170, 25, 69, 0.06);
  border-bottom: 1px solid rgba(170, 25, 69, 0.06);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-items div {
  display: grid;
  gap: 4px;
  padding: 8px 0;
}

.trust-items strong {
  font-size: 0.98rem;
}

.trust-items span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 92px 0;
}

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

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

.section-heading h2,
.about-copy h2,
.final-cta-box h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p,
.about-copy p,
.final-cta-box p {
  margin-top: 16px;
  color: var(--muted);
}

.services {
  background: var(--surface-alt);
}

.services-grid,
.differentials-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
}

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

.services-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.service-card {
  min-width: 350px;
  min-height: 350px;
  max-width: 350px;
  max-height: 350px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.service-card,
.diff-card,
.testimonial-card,
.about-panel,
.final-cta-box {
  background: var(--surface);
  border: 1px solid rgba(170, 25, 69, 0.08);

}

.service-card,
.diff-card,
.testimonial-card {
  padding: 30px;
  border-radius: var(--radius-md);
}

.service-card h3,
.diff-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p,
.diff-card p,
.testimonial-card p,
.panel-item span {
  color: var(--muted);
}





.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.differentials-grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.about-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.panel-item {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

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

.testimonials {
  background: var(--surface-alt);
}

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

.testimonial-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
}

.final-cta-box {
  border-radius: 32px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 28px 0 90px;
  border-top: 1px solid rgba(170, 25, 69, 0.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap p {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: -24px 0 60px rgba(35, 25, 28, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
    fill: white;

}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: -24px 0 60px rgba(35, 25, 28, 0.12);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

.hero-grid,
.about-grid,
.testimonials-grid,
.trust-items,
.differentials-grid,
.final-cta-box,
.footer-wrap {
  grid-template-columns: 1fr;
  flex-direction: column;
}

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-image-wrap {
    min-height: 520px;
  }

  .final-cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 72px;
  }

  .section {
    padding: 74px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-image-wrap {
    min-height: 420px;
    border-radius: 20px;
  }

  .service-card,
  .diff-card,
  .testimonial-card,
  .about-panel,
  .final-cta-box {
    padding: 24px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}


.services-carousel {
  position: relative;
}

.services-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(170, 25, 69, 0.95);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn-left {
  left: -20px;
}

.carousel-btn-right {
  right: -20px;
}

.carousel-btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 980px) {
  .carousel-btn-left {
    left: 8px;
  }

  .carousel-btn-right {
    right: 8px;
  }
}