:root {
  --teal: #009ca6;
  --teal-dark: #006875;
  --aqua-soft: #dceff0;
  --ivory: #f8f5ef;
  --warm-white: #fffdf9;
  --wood: #9b5d3a;
  --gold: #c7a564;
  --ink: #243033;
  --muted: #697174;
  --line: rgba(36, 48, 51, 0.14);
  --shadow: 0 20px 70px rgba(36, 48, 51, 0.13);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  line-height: 1.55;
}

body::selection {
  color: white;
  background: var(--teal-dark);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 5vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 156, 166, 0.18);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 30px);
  color: #4c5558;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button-primary {
  color: white;
  background: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(0, 104, 117, 0.22);
}

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 104, 117, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0, 104, 117, 0.2);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #1c292d;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 24, 0.78), rgba(13, 22, 24, 0.34) 48%, rgba(13, 22, 24, 0.1)),
    linear-gradient(0deg, rgba(13, 22, 24, 0.35), rgba(13, 22, 24, 0.02) 52%),
    url("./assets/hero-cabina.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 84px);
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9be3e5;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8.5vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 5.3vw, 4.2rem);
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.hero-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
}

.trust-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 58px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro {
  background:
    linear-gradient(180deg, white, rgba(220, 239, 240, 0.38)),
    var(--warm-white);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.concern-card {
  min-height: 144px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.concern-card span {
  display: block;
  font-size: 1.1rem;
  font-weight: 850;
}

.concern-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.concern-card:hover,
.concern-card.is-selected {
  border-color: rgba(0, 156, 166, 0.45);
  background: white;
  box-shadow: 0 16px 38px rgba(0, 104, 117, 0.1);
}

.advisor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 104, 117, 0.96), rgba(0, 156, 166, 0.86)),
    url("./assets/cabina-detalle.jpg") center / cover no-repeat;
}

.advisor .eyebrow {
  color: #cbf6f6;
}

.advisor-copy {
  max-width: 680px;
}

.advisor-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.advisor-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.advisor-panel label,
.advisor-panel legend {
  color: #425055;
  font-size: 0.88rem;
  font-weight: 800;
}

.advisor-panel input[type="text"],
.advisor-panel select {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.advisor-panel fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.branch-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.branch-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.branch-options input {
  accent-color: var(--teal-dark);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.treatments {
  background: var(--warm-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card.highlight {
  color: white;
  background: linear-gradient(145deg, var(--teal-dark), var(--teal));
  border-color: transparent;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.service-type {
  margin: 0 0 10px !important;
  color: var(--wood) !important;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card.highlight .service-type {
  color: #cbf6f6 !important;
}

.service-card strong {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.service-card.highlight strong {
  color: white;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--ivory);
  border-block: 1px solid var(--line);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 92px);
}

.feature-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.44em;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  transform: rotate(-45deg);
}

.prices {
  background: white;
}

.price-groups {
  display: grid;
  gap: 14px;
  max-width: 1040px;
}

.price-group {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-group summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary span {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.price-group summary small {
  grid-column: 1;
  grid-row: 2;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.price-group summary::after {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--teal-dark);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.price-group[open] summary {
  border-bottom: 1px solid var(--line);
}

.price-group[open] summary::after {
  content: "-";
}

.price-list {
  display: grid;
  padding: 0 24px 18px;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-item:first-child {
  border-top: 0;
}

.price-item h3,
.price-item p {
  margin: 0;
}

.price-item h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.price-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-item strong {
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}

.package-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px !important;
  padding: 4px 9px;
  color: var(--teal-dark) !important;
  background: rgba(0, 156, 166, 0.1);
  border: 1px solid rgba(0, 156, 166, 0.18);
  border-radius: 999px;
  font-size: 0.82rem !important;
  font-weight: 800;
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 20px;
  align-items: end;
  padding: clamp(60px, 9vw, 110px) clamp(18px, 5vw, 58px);
  background: linear-gradient(180deg, var(--warm-white), var(--aqua-soft));
}

.gallery-copy {
  max-width: 360px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: clamp(260px, 34vw, 460px);
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery img:nth-child(2) {
  margin-top: 46px;
}

.gallery img:nth-child(3) {
  margin-top: 92px;
}

.process {
  background: var(--warm-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 214px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.branches {
  background:
    linear-gradient(0deg, rgba(248, 245, 239, 0.92), rgba(248, 245, 239, 0.92)),
    url("./assets/espejos-cabina.jpg") center / cover no-repeat;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.branch-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(36, 48, 51, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(36, 48, 51, 0.08);
}

.branch-card h3 {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 2rem;
}

.branch-card p {
  min-height: 74px;
  color: var(--muted);
}

.faq {
  background: white;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq-list details {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(64px, 10vw, 118px) 18px;
  text-align: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(25, 30, 31, 0.82), rgba(0, 104, 117, 0.78)),
    url("./assets/camilla-frontal.jpg") center / cover no-repeat;
}

.final-cta h2 {
  max-width: 920px;
}

.final-cta p {
  max-width: 660px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.mobile-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: white;
  background: #158a42;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(21, 138, 66, 0.32);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.76);
  background: #152225;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .advisor,
  .feature-band,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 420px;
  }

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

  .gallery-copy {
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(13, 22, 24, 0.56), rgba(13, 22, 24, 0.72)),
      url("./assets/hero-cabina.jpg") 38% center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .concern-grid,
  .service-grid,
  .price-groups,
  .steps,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-group summary {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 20px;
  }

  .price-group summary small {
    padding-right: 42px;
  }

  .price-group summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .price-list {
    padding: 0 20px 16px;
  }

  .price-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .advisor {
    padding-bottom: 88px;
  }

  .branch-options {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 360px;
  }

  .feature-copy {
    padding: 42px 18px;
  }

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

  .gallery img,
  .gallery img:nth-child(2),
  .gallery img:nth-child(3) {
    height: 300px;
    margin-top: 0;
  }

  .branch-card p {
    min-height: 0;
  }

  .mobile-whatsapp {
    left: 16px;
    display: flex;
  }

  .site-footer {
    display: grid;
    padding-bottom: 84px;
  }
}
