:root {
  --bg: #fffaf7;
  --bg-soft: #f8ece8;
  --rose: #c98388;
  --rose-dark: #a9676d;
  --brown: #493629;
  --green: #58683d;
  --green-dark: #46542f;
  --text: #4b3b32;
  --muted: #7d6b62;
  --line: rgba(73, 54, 41, .12);
  --shadow: 0 20px 55px rgba(83, 53, 38, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

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

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
  color: var(--brown);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background:
    radial-gradient(circle at 12% 12%, rgba(201,131,136,.16), transparent 32%),
    var(--bg-soft);
}

.hero-copy {
  padding: 56px clamp(28px, 7vw, 110px) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  width: min(430px, 78%);
  max-height: 170px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 36px;
  border-radius: 12px;
}

.eyebrow {
  display: inline-block;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  margin-bottom: 24px;
}

.lead {
  max-width: 650px;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  color: var(--muted);
  margin-bottom: 28px;
}

.benefits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
}

.benefits-inline span {
  position: relative;
  padding-left: 19px;
  font-size: .88rem;
  font-weight: 600;
}

.benefits-inline span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-dark);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 58px;
  padding: 17px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(70,84,47,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(70,84,47,.3);
}

.whatsapp-icon {
  font-size: 1.35rem;
}

.safe-note {
  font-size: .77rem;
  color: var(--muted);
  margin: 14px 0 0;
}

.hero-carousel {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 42px 34px;
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,.76), transparent 28%),
    linear-gradient(160deg, #f2ded8, #f8efeb 62%, #ead7d2);
}

.carousel-shell {
  position: relative;
  width: min(620px, 100%);
  height: min(78vh, 760px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 28px 70px rgba(83,53,38,.18);
  backdrop-filter: blur(10px);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 22px;
  opacity: 0;
  transform: scale(.985) translateX(18px);
  transition: opacity .65s ease, transform .65s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  background: rgba(255,255,255,.28);
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(73,54,41,.12);
  border-radius: 50%;
  background: rgba(255,250,247,.86);
  color: var(--brown);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(83,53,38,.14);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(73,54,41,.28);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--rose-dark);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 30px;
  max-width: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  background: rgba(255,250,247,.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span { display: block; }

.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--brown);
}

.hero-badge span {
  margin-top: 4px;
  font-size: .78rem;
  color: var(--muted);
}

.section {
  padding: 100px clamp(22px, 7vw, 110px);
}

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

.section-heading h2 {
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  margin-bottom: 0;
}

.why {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards article {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  text-align: center;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6dedf;
  color: var(--rose-dark);
  font-size: 1.45rem;
}

.cards h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.gallery {
  background: var(--bg-soft);
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .85fr .85fr;
  grid-template-rows: 430px 430px;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid .tall {
  grid-row: 1 / span 2;
}

.gallery-grid .wide {
  grid-column: 2 / span 2;
}

.final-cta {
  padding: 80px clamp(24px, 8vw, 120px);
  background: linear-gradient(135deg, #f0d9d7, #f9eeea);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  max-width: 760px;
  margin-bottom: 12px;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 0;
}

footer {
  padding: 50px 24px 90px;
  text-align: center;
  background: #fff;
}

footer img {
  width: min(320px, 74vw);
  max-height: 125px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 10px;
}

footer p {
  color: var(--muted);
  margin-bottom: 10px;
}

footer small {
  color: #9b8c84;
}

.floating-cta {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: none;
  width: calc(100% - 28px);
  max-width: 480px;
  padding: 15px 18px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 35px rgba(41,55,28,.34);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 32px 22px 36px;
    order: 1;
    text-align: center;
    align-items: center;
  }

  .brand {
    width: min(360px, 88%);
    max-height: 135px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
    margin-bottom: 18px;
  }

  .lead {
    margin-bottom: 22px;
  }

  .hero-carousel {
    min-height: auto;
    order: 2;
    padding: 12px 16px 28px;
  }

  .carousel-shell {
    width: 100%;
    height: 410px;
    min-height: 0;
    border-radius: 24px;
  }

  .carousel-slide {
    padding: 14px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.75rem;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .benefits-inline {
    justify-content: center;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 310px 430px;
  }

  .gallery-grid .tall {
    grid-row: 1 / span 2;
  }

  .gallery-grid .wide {
    grid-column: 1 / span 2;
  }

  .final-cta {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta {
    display: block;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 26px 18px 30px;
  }

  .hero-carousel {
    padding: 8px 12px 24px;
  }

  .carousel-shell {
    height: 350px;
    border-radius: 20px;
  }

  .carousel-slide {
    padding: 10px;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 34px;
    padding: 13px 15px;
  }

  .brand {
    width: min(330px, 90%);
    max-height: 118px;
  }

  .section {
    padding: 72px 18px;
  }

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

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 260px 360px;
    gap: 8px;
  }

  .gallery-grid figure {
    border-radius: 14px;
  }

  .gallery-grid .tall {
    grid-row: 1 / span 2;
  }

  .gallery-grid .wide {
    grid-column: 1 / span 2;
  }

  .final-cta {
    padding: 72px 20px 96px;
  }

  .cta {
    width: 100%;
    font-size: .92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide,
  .reveal,
  .cta {
    transition: none;
  }
}
