:root {
  --green: #1db954;
  --green2: #35d36f;
  --deep: #020704;
  --forest: #07140c;
  --forest2: #0b2114;
  --lime: #b8ff5c;
  --gold: #d7b46a;
  --gold2: #f3d58b;
  --ink: #f4fff6;
  --muted: #b4c7ba;
  --paper: #030805;
  --card: rgba(6, 18, 10, .92);
  --white: #fff;
  --line: rgba(76, 214, 122, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0, rgba(29, 185, 84, .28), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(184, 255, 92, .13), transparent 26%),
    linear-gradient(180deg, #020704 0%, #06140b 44%, #010302 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(76, 214, 122, .08) 1px, transparent 1px),
    linear-gradient(rgba(76, 214, 122, .06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, .45) 72%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 78%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 24px;
}

a {
  color: var(--green2);
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #07140c;
  color: var(--lime);
  padding: .75rem;
  z-index: 20;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 5, 2, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .36);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .72rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  margin-right: auto;
}

.brand img {
  border-radius: 50%;
  border: 3px solid var(--green2);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, .14);
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.brand small {
  display: block;
  color: #cfe7d5;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.menu a {
  padding: .55rem .8rem;
  border-radius: 999px;
  color: #edf7ee;
}

.menu a:hover {
  background: rgba(184, 255, 92, .13);
  color: var(--lime);
}

.menu-toggle {
  display: none;
}

.nav-cta,
.btn {
  border: 1px solid rgba(76, 214, 122, .46);
  padding: .85rem 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  color: var(--ink);
  background: rgba(8, 24, 13, .76);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.primary,
.nav-cta {
  background: linear-gradient(135deg, var(--lime), #56d66d);
  color: #041008;
  border-color: transparent;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36);
}

.ghost {
  background: rgba(5, 20, 10, .76);
  color: white;
}

.light {
  background: #07140c;
  color: var(--lime);
}

.hero {
  position: relative;
  color: white;
  padding: 6rem 0 5.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .97), rgba(3, 17, 8, .94), rgba(9, 45, 22, .78)),
    url(../img/hero-barberia-green.jpg) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 45%;
  height: 80%;
  background: radial-gradient(circle, rgba(29, 185, 84, .35), transparent 62%);
  filter: blur(20px);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green2);
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 5.5rem);
  line-height: 1.04;
  margin: .2rem 0 1rem;
  letter-spacing: -.05em;
}

.hero .eyebrow {
  color: var(--lime);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: .16em;
  margin-bottom: .8rem;
  text-shadow: 0 0 22px rgba(184, 255, 92, .34);
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero h1 mark {
  background: none;
  color: var(--lime);
  padding: 0;
  border-radius: 0;
  font: inherit;
  box-decoration-break: clone;
}

mark {
  background: linear-gradient(120deg, rgba(184, 255, 92, .95), rgba(53, 211, 111, .95));
  color: #041008;
  padding: .02em .15em;
  border-radius: .16em;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: inherit;
  opacity: .92;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.5rem 0;
}

.rating {
  color: #dbeadd;
  font-weight: 800;
}

.hero-img {
  margin: 0;
}

.hero-img img {
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.hero-img figcaption {
  color: #dbeadd;
  margin-top: .65rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.features article,
.service-card,
.contact-card,
.blog-card,
.product-card {
  background: linear-gradient(180deg, rgba(9, 28, 15, .95), rgba(3, 10, 5, .94));
  border: 1px solid rgba(76, 214, 122, .24);
  border-radius: 24px;
  padding: 1.4rem;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .34);
}

.features article,
.service-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.features article::before,
.service-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #020704, var(--green2), var(--lime));
}

.features h2,
.service-card h3 {
  color: var(--lime);
  margin-top: .3rem;
}

.split {
  padding: 5rem 0;
}

.split figure {
  margin: 0;
}

.split figure img {
  box-shadow: var(--shadow);
  border: 1px solid rgba(76, 214, 122, .28);
  background: #020704;
}

.reverse {
  grid-template-columns: .9fr 1.1fr;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-card strong,
.price,
.phone {
  font-size: 1.6rem;
  color: var(--lime);
  display: block;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .97), rgba(4, 27, 12, .94), rgba(11, 64, 28, .82)),
    url(../img/studio-dark-green.jpg) center/cover fixed;
  color: white;
  padding: 3.5rem 0;
  text-align: center;
  border-block: 1px solid var(--line);
}

.check {
  padding-left: 1.1rem;
}

.check li::marker {
  content: '✓ ';
  color: var(--lime);
  font-weight: 900;
}

.faq {
  padding: 3rem 0;
}

.faq details {
  background: var(--card);
  color: var(--ink);
  margin: .8rem 0;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(76, 214, 122, .22);
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  color: var(--ink);
}

.page-hero::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--gold));
  border-radius: 999px;
  margin-top: 1rem;
}

.price-list {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
}

.price-list div {
  background: var(--card);
  border-left: 6px solid var(--green2);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.price-list span {
  font-weight: 900;
  font-size: 1.15rem;
}

.price-list small {
  display: block;
  color: var(--muted);
}

.gallery-mini,
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0 5rem;
}

.gallery-mini h2 {
  grid-column: 1/-1;
}

.gallery img,
.gallery-mini img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: .3s ease;
}

.gallery figure {
  margin: 0;
  background: linear-gradient(180deg, rgba(9, 28, 15, .96), rgba(0, 0, 0, .92));
  padding: .6rem;
  border-radius: 24px;
  border: 1px solid rgba(76, 214, 122, .22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  padding: .75rem .25rem .2rem;
  font-weight: 800;
  color: var(--lime);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}

.wide {
  grid-column: 1/-1;
}

.hours ul {
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(76, 214, 122, .22);
}

.map-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(9, 28, 15, .96), rgba(0, 0, 0, .92));
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(76, 214, 122, .24);
  box-shadow: var(--shadow);
  background: #020704;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: center;
}

.product-img {
  margin: 0;
}

.product-img img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(76, 214, 122, .28);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 5rem;
}

.article {
  max-width: 820px;
  padding: 4rem 0;
}

.article img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.footer {
  background: #010302;
  color: white;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 2rem;
}

.footer img {
  border-radius: 50%;
  border: 3px solid var(--green2);
}

.footer a {
  color: var(--lime);
}

.copyright {
  text-align: center;
  color: #bdd0c1;
}

.float-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  z-index: 12;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: #07140c;
    color: var(--ink);
    border: 1px solid rgba(76, 214, 122, .32);
    border-radius: 12px;
    padding: .6rem;
  }

  .menu {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 92px;
    background: #010302;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .menu.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .product-card,
  .footer-grid,
  .map-card {
    grid-template-columns: 1fr;
  }

  .features,
  .cards,
  .gallery-mini,
  .gallery,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .features {
    margin-top: 1rem;
  }

  .reverse {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery-mini img {
    height: auto;
  }

  .hours li {
    display: block;
  }

  .brand small {
    display: none;
  }

  .map-frame iframe {
    min-height: 330px;
  }
}
