:root {
  --purple-950: #24103d;
  --purple-900: #321253;
  --purple-800: #3f1767;
  --purple-700: #52227c;
  --pink-600: #ef347a;
  --pink-500: #f43b82;
  --pink-100: #ffe5ef;
  --teal-500: #3eb7c4;
  --teal-100: #dcf7f8;
  --ink: #281d31;
  --muted: #6e6574;
  --paper: #fffdfc;
  --soft: #f8f4f8;
  --white: #ffffff;
  --green: #25d366;
  --border: rgba(63, 23, 103, 0.12);
  --shadow: 0 22px 60px rgba(45, 17, 72, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--pink-600);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 10px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 252, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  margin-right: auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #594d61;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--pink-600);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(62, 183, 196, 0.5);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-600), #d92870);
  box-shadow: 0 12px 28px rgba(239, 52, 122, 0.28);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(239, 52, 122, 0.36);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.86rem;
}

.button-full {
  width: 100%;
}

.button-outline {
  color: var(--purple-800);
  background: var(--white);
  border-color: rgba(63, 23, 103, 0.26);
}

.button-outline:hover {
  background: var(--soft);
  border-color: var(--purple-800);
}

.button-light {
  color: var(--purple-900);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 52% 5%, rgba(62, 183, 196, 0.13), transparent 27%),
    linear-gradient(145deg, #fffdfc 0%, #fbf4fa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(rgba(63, 23, 103, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-one {
  top: 8%;
  right: -180px;
  width: 450px;
  height: 450px;
  background: rgba(239, 52, 122, 0.12);
}

.hero-orb-two {
  bottom: -190px;
  left: 28%;
  width: 390px;
  height: 390px;
  background: rgba(62, 183, 196, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.74fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  padding-block: 26px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--purple-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  display: inline-block;
  background: var(--pink-600);
  border-radius: 99px;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--purple-950);
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  letter-spacing: -0.065em;
}

h1 em,
.section-heading h2 em,
.final-cta h2 em {
  color: var(--pink-600);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: #4e3d57;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-description {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-800);
  font-weight: 800;
}

.text-link span {
  color: var(--pink-600);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: #5e5264;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hero-points span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-right: 5px;
  color: var(--purple-800);
  background: var(--teal-100);
  border-radius: 50%;
}

.hero-showcase {
  position: relative;
  min-height: 590px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  background: var(--soft);
  border: 6px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.photo-card img,
.photo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  z-index: 2;
}

.photo-card img.is-broken,
.gallery-card img.is-broken {
  display: none;
}

.photo-card-main {
  z-index: 2;
  top: 80px;
  left: 6%;
  width: 64%;
  height: 430px;
  transform: rotate(-3deg);
}

.photo-card-top {
  z-index: 3;
  top: 4px;
  right: -4%;
  width: 48%;
  height: 260px;
  transform: rotate(5deg);
}

.photo-card-bottom {
  z-index: 4;
  right: -8%;
  bottom: 18px;
  width: 48%;
  height: 275px;
  transform: rotate(4deg);
}

.photo-label {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(36, 16, 61, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
}

.showcase-badge {
  position: absolute;
  z-index: 6;
  bottom: 56px;
  left: -14px;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--teal-500);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(62, 183, 196, 0.32);
  text-align: center;
  transform: rotate(-10deg);
}

.showcase-badge strong {
  display: block;
  font-size: 1.12rem;
}

.showcase-badge span {
  font-size: 0.68rem;
}

.photo-fallback {
  z-index: 1;
  display: grid;
  place-items: center;
}

.photo-fallback::before,
.photo-fallback::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.photo-fallback::before {
  bottom: 8%;
  width: 53%;
  height: 72%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 25%), var(--cup-color, #ffffff);
  border-radius: 8% 8% 22% 22% / 5% 5% 12% 12%;
  box-shadow: inset -10px 0 18px rgba(25, 10, 35, 0.09), 0 18px 35px rgba(25, 10, 35, 0.15);
  clip-path: polygon(8% 0, 92% 0, 82% 100%, 18% 100%);
}

.photo-fallback::after {
  z-index: 2;
  bottom: 77%;
  width: 51%;
  height: 8%;
  background: var(--rim-color, #3eb7c4);
  border-radius: 99px;
}

.fallback-art {
  position: relative;
  z-index: 3;
  width: 38%;
  margin-top: 24%;
  color: var(--art-color, #3f1767);
  font-size: clamp(0.65rem, 1.2vw, 0.9rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(-4deg);
}

.fallback-cup-pink {
  --cup-color: #fff7fb;
  --rim-color: #ef347a;
  --art-color: #ef347a;
  background: radial-gradient(circle at 40% 15%, #ffd4e5, transparent 34%), linear-gradient(150deg, #f43b82, #3f1767);
}

.fallback-cup-tiffany {
  --cup-color: #d8ffff;
  --rim-color: #3eb7c4;
  --art-color: #3f1767;
  background: radial-gradient(circle at 35% 20%, #e6ffff, transparent 35%), linear-gradient(150deg, #3eb7c4, #26103f);
}

.fallback-cup-purple {
  --cup-color: #f7efff;
  --rim-color: #8b54c7;
  --art-color: #52227c;
  background: radial-gradient(circle at 35% 18%, #f3e7ff, transparent 35%), linear-gradient(150deg, #8f55cc, #24103d);
}

.fallback-cup-dark {
  --cup-color: #29242d;
  --rim-color: #c6c3cd;
  --art-color: #ffffff;
  background: radial-gradient(circle at 35% 18%, #8256ab, transparent 35%), linear-gradient(150deg, #3f1767, #100918);
}

.lead-card {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(63, 23, 103, 0.1);
  border-radius: 30px;
  box-shadow: 0 28px 75px rgba(45, 17, 72, 0.17);
  backdrop-filter: blur(18px);
}

.lead-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 74px;
  height: 5px;
  background: linear-gradient(90deg, var(--pink-600), var(--teal-500));
  border-radius: 0 0 99px 99px;
}

.lead-card-heading {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.mini-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--pink-600);
  background: var(--pink-100);
  border-radius: 14px;
}

.mini-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lead-card-heading p {
  margin-bottom: 2px;
  color: var(--pink-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-card h2 {
  margin-bottom: 0;
  color: var(--purple-950);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.form-intro {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #4b3b54;
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fcfafc;
  border: 1px solid rgba(63, 23, 103, 0.15);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field select {
  cursor: pointer;
}

.field input::placeholder {
  color: #aaa0ae;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(63, 23, 103, 0.3);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #d51c5b;
  box-shadow: 0 0 0 3px rgba(213, 28, 91, 0.1);
}

.field-error {
  min-height: 16px;
  display: block;
  margin-top: 3px;
  color: #b4184c;
  font-size: 0.68rem;
  font-weight: 700;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 13px 0 0;
  color: #817786;
  font-size: 0.66rem;
  line-height: 1.4;
}

.privacy-note svg {
  flex: 0 0 auto;
  width: 15px;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 1.8;
}

.form-status {
  margin-top: 10px;
  color: var(--purple-700);
  font-size: 0.76rem;
  font-weight: 800;
}

.trust-strip {
  color: var(--white);
  background: var(--purple-950);
}

.trust-items {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-items i {
  width: 6px;
  height: 6px;
  background: var(--pink-600);
  border-radius: 50%;
}

.section {
  padding: 110px 0;
}

.possibilities {
  background:
    radial-gradient(circle at 100% 10%, rgba(239, 52, 122, 0.08), transparent 27%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.section-heading h2,
.final-cta h2 {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--purple-950);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--purple-900);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(42, 16, 66, 0.12);
}

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

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

.gallery-card img,
.gallery-card .photo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card img {
  z-index: 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 9, 37, 0.88), rgba(23, 9, 37, 0.04) 70%);
}

.gallery-card:hover img,
.gallery-card:hover .photo-fallback {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
}

.gallery-overlay span {
  display: inline-block;
  margin-bottom: 6px;
  color: #80e0e5;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-overlay h3 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.gallery-overlay p {
  max-width: 400px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.benefits {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 100%, rgba(62, 183, 196, 0.2), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(239, 52, 122, 0.17), transparent 24%),
    var(--purple-950);
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(45deg, transparent 45%, white 46%, white 47%, transparent 48%);
  background-size: 54px 54px;
}

.benefits-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.eyebrow-light {
  color: #a4e9ec;
}

.benefits-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefits-list article {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  transition: transform 180ms ease, background 180ms ease;
}

.benefits-list article:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.benefit-number {
  color: var(--pink-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefits-list h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.benefits-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.final-cta {
  background: linear-gradient(135deg, #f8f4f8, #fff6f9);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 38px;
  overflow: hidden;
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.final-cta-mark {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--pink-100);
  border-radius: 50%;
}

.final-cta-mark img {
  width: 74px;
  height: auto;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #1d0c30;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.8fr;
  gap: 80px;
  padding: 70px 0 48px;
}

.footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 310px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-main h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main a:hover {
  color: #82e6ea;
}

.footer-main p,
.footer-main a {
  font-size: 0.82rem;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.7rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 88, 45, 0.3);
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 40px rgba(18, 88, 45, 0.4);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  fill: currentColor;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-showcase {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .lead-card {
    grid-column: 1;
    max-width: 560px;
  }

  .photo-card-main {
    width: 75%;
  }

  .photo-card-top,
  .photo-card-bottom {
    right: 0;
    width: 54%;
  }

  .section-heading {
    gap: 40px;
  }

  .benefits-grid {
    gap: 45px;
  }

  .final-cta-inner {
    grid-template-columns: 120px 1fr;
  }

  .final-cta-inner .button {
    grid-column: 2;
    justify-self: start;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 126px;
  }

  .header-inner .button-small {
    padding: 10px 14px;
    font-size: 0.74rem;
  }

  .hero {
    padding: 52px 0 70px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-showcase {
    width: 100%;
    min-height: 500px;
  }

  .photo-card-main {
    left: 3%;
    width: 66%;
    height: 380px;
  }

  .photo-card-top,
  .photo-card-bottom {
    right: 2%;
    width: 46%;
  }

  .lead-card {
    width: 100%;
    max-width: 600px;
  }

  .trust-items {
    min-height: 64px;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
  }

  .trust-items span:nth-of-type(4),
  .trust-items span:nth-of-type(5),
  .trust-items i:nth-of-type(4),
  .trust-items i:nth-of-type(5) {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
  }

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

  .gallery-card-tall {
    grid-row: auto;
  }

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

  .benefits-copy {
    max-width: 620px;
  }

  .final-cta-inner {
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 34px;
  }

  .final-cta-mark {
    width: 94px;
    height: 94px;
  }

  .final-cta-mark img {
    width: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .header-inner .button-small {
    min-height: 40px;
    max-width: 150px;
    font-size: 0.68rem;
  }

  .brand img {
    width: 110px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-points {
    display: grid;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .photo-card {
    border-width: 4px;
    border-radius: 22px;
  }

  .photo-card-main {
    top: 65px;
    left: 0;
    width: 69%;
    height: 320px;
  }

  .photo-card-top {
    right: 0;
    width: 45%;
    height: 190px;
  }

  .photo-card-bottom {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 210px;
  }

  .showcase-badge {
    bottom: 28px;
    left: 3px;
    width: 82px;
    height: 82px;
  }

  .showcase-badge strong {
    font-size: 0.9rem;
  }

  .lead-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-card,
  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    display: block;
    padding: 28px 22px;
  }

  .final-cta-mark {
    margin-bottom: 24px;
  }

  .final-cta h2 {
    margin-bottom: 12px;
  }

  .final-cta-inner .button {
    width: 100%;
    margin-top: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
