:root {
  --ink: #10272c;
  --muted: #5f7074;
  --teal: #087f8d;
  --teal-dark: #05626f;
  --cyan: #41c7d9;
  --ice: #eef8f8;
  --line: #dbe8e9;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 19px; height: 19px; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 126px; height: 62px; object-fit: contain; mix-blend-mode: multiply; }
.site-header nav { display: flex; gap: 36px; margin-left: auto; }
.site-header nav a { color: #52666a; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.site-header nav a:hover { color: var(--teal); }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; }
.header-cta { border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; font-size: 14px; transition: transform .2s ease, border-color .2s ease; }
.header-cta:hover { transform: translateY(-2px); border-color: var(--teal); }

.hero {
  width: min(1240px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 64px clamp(28px, 5vw, 76px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 12%, rgba(65,199,217,.18), transparent 32%),
    linear-gradient(130deg, #f4fbfb 0%, #edf7f7 58%, #dff1f2 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 900; }
.eyebrow span { width: 24px; height: 2px; background: var(--cyan); }
.hero h1 { margin: 0; max-width: 650px; font-size: clamp(50px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; font-weight: 850; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-text { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; padding: 0 22px; border-radius: 12px; font-size: 15px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--teal); box-shadow: 0 14px 30px rgba(8,127,141,.22); }
.button-primary:hover { background: var(--teal-dark); box-shadow: 0 16px 34px rgba(8,127,141,.3); }
.button-secondary { background: rgba(255,255,255,.72); border: 1px solid rgba(8,127,141,.2); color: var(--teal-dark); }
.hero-note { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; color: #6a7a7d; font-size: 13px; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 430px); height: 510px; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 24px 24px 80px 24px; box-shadow: 0 34px 70px rgba(19,54,59,.22); }
.hero-visual::before { content: ""; position: absolute; inset: -18px 26px 28px -18px; border: 1px solid rgba(8,127,141,.22); border-radius: 32px 32px 88px 32px; z-index: -1; }
.photo-tag { position: absolute; left: -42px; bottom: 28px; min-width: 220px; padding: 16px 20px; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 16px 40px rgba(13,47,52,.18); backdrop-filter: blur(12px); }
.photo-tag span { display: block; color: var(--teal); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; }
.photo-tag strong { display: block; margin-top: 5px; font-size: 14px; }
.since-seal { position: absolute; top: -24px; right: -20px; width: 88px; height: 88px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-content: center; text-align: center; transform: rotate(7deg); box-shadow: 0 14px 30px rgba(16,39,44,.22); }
.since-seal small { font-size: 9px; letter-spacing: .16em; }
.since-seal strong { color: var(--cyan); font-size: 24px; line-height: 1; }

.trust-bar { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-bar > div { display: flex; align-items: center; gap: 12px; padding: 0 20px; border-right: 1px solid var(--line); }
.trust-bar > div:last-child { border-right: 0; }
.trust-bar svg { flex: 0 0 auto; color: var(--teal); }
.trust-bar span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.trust-bar strong { display: block; color: var(--ink); font-size: 14px; }

.section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.section-kicker { margin: 0 0 14px; color: var(--teal); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 900; }
.section-kicker.light { color: var(--cyan); }
.section h2, .decision-strip h2, .service-section h2, .closing-cta h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.04;
  font-size: clamp(38px, 5vw, 60px);
}
.section-heading > p { max-width: 480px; margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product-card {
  min-height: 292px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(8,127,141,.35); box-shadow: 0 24px 55px rgba(24,70,76,.1); }
.product-card-wide {
  grid-column: span 2;
  min-height: 320px;
  padding-right: min(38%, 420px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 50%, rgba(65,199,217,.32), transparent 22%),
    linear-gradient(120deg, #edf9f9, #dceff1);
}
.product-card-wide::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -80px;
  width: 360px;
  height: 360px;
  border: 52px solid rgba(8,127,141,.08);
  border-radius: 50%;
}
.product-icon { width: 52px; height: 52px; margin-bottom: 34px; border-radius: 15px; background: var(--ice); color: var(--teal); display: grid; place-items: center; }
.product-icon svg { width: 25px; height: 25px; }
.product-tag { color: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 9px 0 10px; font-size: 26px; letter-spacing: -.025em; }
.product-card p { max-width: 560px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
.product-card > a { width: fit-content; margin-top: 28px; display: inline-flex; align-items: center; gap: 4px; color: var(--teal-dark); font-size: 13px; font-weight: 900; }
.product-card > a svg { transition: transform .2s ease; }
.product-card > a:hover svg { transform: translateX(4px); }

.decision-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 104px;
  padding: 38px 44px;
  border-radius: 24px;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.decision-icon { width: 66px; height: 66px; border-radius: 19px; background: rgba(65,199,217,.13); color: var(--cyan); display: grid; place-items: center; }
.decision-icon svg { width: 30px; height: 30px; }
.decision-strip h2 { max-width: 700px; font-size: clamp(28px, 3vw, 42px); }
.decision-strip a { min-height: 48px; padding: 0 18px; border-radius: 12px; background: white; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 900; transition: transform .2s ease; }
.decision-strip a:hover { transform: translateY(-2px); }

.service-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 100px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 15%, rgba(65,199,217,.14), transparent 25%),
    #10272c;
  color: white;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}
.service-section h2 { max-width: 620px; }
.service-lead { max-width: 590px; margin: 24px 0 0; color: #afc0c3; font-size: 17px; line-height: 1.7; }
.service-list { margin: 28px 0 32px; padding: 0; list-style: none; display: grid; gap: 14px; }
.service-list li { display: flex; align-items: center; gap: 11px; color: #d8e4e5; font-size: 14px; }
.service-list svg { width: 21px; height: 21px; padding: 4px; border-radius: 50%; background: rgba(65,199,217,.16); color: var(--cyan); }
.service-list strong { color: white; }
.button-light { background: var(--cyan); color: var(--ink); box-shadow: 0 16px 34px rgba(65,199,217,.15); }
.button-light:hover { background: #6dd5e2; }
.service-cards { display: grid; gap: 16px; }
.service-cards article { min-height: 230px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.service-cards article > svg { color: var(--cyan); width: 32px; height: 32px; margin-bottom: 26px; }
.service-cards span { display: block; color: #91aaae; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; }
.service-cards h3 { margin: 6px 0 10px; font-size: 30px; }
.service-cards p { margin: 0; color: #afc0c3; font-size: 14px; line-height: 1.62; }

.store-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 96px); align-items: center; }
.store-gallery { position: relative; min-height: 610px; }
.store-main-photo { position: absolute; top: 0; left: 0; width: 69%; height: 570px; }
.store-main-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 24px; box-shadow: 0 30px 65px rgba(16,39,44,.15); }
.store-main-photo span { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.93); color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1.4; backdrop-filter: blur(8px); }
.store-detail-photo { position: absolute; right: 0; bottom: 0; width: 42%; height: 370px; object-fit: cover; object-position: center; border: 8px solid white; border-radius: 20px; box-shadow: 0 24px 55px rgba(16,39,44,.2); }
.store-copy > p:not(.section-kicker) { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.store-info { margin: 30px 0; display: grid; gap: 18px; }
.store-info > div { display: flex; align-items: center; gap: 13px; }
.store-info svg { color: var(--teal); width: 22px; height: 22px; flex: 0 0 auto; }
.store-info span { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; }
.store-info strong { display: block; color: var(--ink); }
.store-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.instagram-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: 14px; font-weight: 900; }

.closing-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: 52px;
  border-radius: 26px;
  background: linear-gradient(115deg, #087f8d 0%, #05626f 100%);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.closing-cta::after { content: ""; position: absolute; width: 280px; height: 280px; right: -100px; top: -150px; border: 42px solid rgba(255,255,255,.07); border-radius: 50%; }
.closing-icon { width: 46px; height: 46px; color: var(--cyan); }
.closing-cta h2 { max-width: 710px; font-size: clamp(30px, 4vw, 47px); }
.button-white { position: relative; z-index: 1; background: white; color: var(--teal-dark); }

footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 34px; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-top img { width: 112px; height: 56px; object-fit: contain; mix-blend-mode: multiply; }
.footer-top p { color: var(--muted); font-size: 14px; }
.footer-top a { color: var(--teal-dark); font-size: 15px; font-weight: 900; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; color: #829094; font-size: 12px; }

.floating-whatsapp { position: fixed; z-index: 20; right: 22px; bottom: 22px; min-height: 54px; padding: 0 18px; border-radius: 999px; background: #20a95b; color: white; display: flex; align-items: center; gap: 9px; box-shadow: 0 14px 35px rgba(0,0,0,.22); font-size: 13px; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #188e4b; }
.floating-whatsapp svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-visual { justify-self: center; width: min(100%, 520px); }
  .photo-tag { left: 18px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 8px 22px; }
  .trust-bar > div:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .decision-strip { grid-template-columns: auto 1fr; }
  .decision-strip a { grid-column: 2; width: fit-content; }
  .service-section, .store-section { grid-template-columns: 1fr; }
  .store-section { gap: 58px; }
  .store-gallery { width: min(100%, 620px); min-height: 600px; }
  .closing-cta { grid-template-columns: auto 1fr; }
  .closing-cta .button { grid-column: 2; width: fit-content; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 28px); height: 74px; }
  .brand img { width: 104px; }
  .header-cta { padding: 11px 14px; font-size: 0; }
  .header-cta svg { width: 21px; height: 21px; }
  .hero { width: calc(100% - 20px); min-height: auto; padding: 42px 22px 26px; border-radius: 24px; gap: 46px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-text { margin-top: 22px; font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { height: 440px; }
  .since-seal { right: -8px; }
  .section { width: calc(100% - 32px); padding: 78px 0; }
  .section h2, .service-section h2 { font-size: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: auto; padding-right: 28px; }
  .product-card-wide::after { display: none; }
  .decision-strip { width: calc(100% - 20px); margin-bottom: 78px; padding: 30px 24px; grid-template-columns: 1fr; }
  .decision-icon { width: 54px; height: 54px; }
  .decision-strip a { grid-column: auto; width: 100%; }
  .service-section { width: calc(100% - 20px); padding: 54px 22px; border-radius: 24px; }
  .button-light { width: 100%; }
  .store-gallery { min-height: 500px; }
  .store-main-photo { width: 76%; height: 465px; }
  .store-detail-photo { width: 46%; height: 310px; }
  .store-actions { align-items: stretch; flex-direction: column; }
  .instagram-link { justify-content: center; min-height: 44px; }
  .closing-cta { width: calc(100% - 20px); padding: 38px 24px; grid-template-columns: 1fr; }
  .closing-icon { width: 38px; height: 38px; }
  .closing-cta .button { grid-column: auto; width: 100%; }
  footer { width: calc(100% - 32px); }
  .footer-top { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-top p { margin: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
