/* ==========================================================================
   Fidalgos Studio
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root{
  /* palette (from the original theme kit) */
  --accent-1: #191919;   /* dark / text / buttons */
  --accent-2: #EEEBE2;   /* cream */
  --accent-3: #FAFAFA;   /* off white */
  --accent-4: #FEFCF5;   /* page background */
  --accent-5: #FFFFFF;   /* white */
  --accent-6: #000000;   /* black */
  --accent-7: rgba(0,0,0,0.15); /* hairline borders */
  --accent-8: rgba(255,255,255,0.3);

  --btn-text: #FFFFFF;
  --btn-hover-text: #DDD8D4;
  --btn-bg: #191919;
  --btn-hover-bg: #000000;

  --font-heading: "Philosopher", "Times New Roman", serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-label: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max-width: 1280px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; overflow-x: hidden; }

/* Compensa o header fixo para os links do menu pararem logo abaixo do título, com um espaço mínimo */
[id]{ scroll-margin-top: 120px; }

/* #top é o topo real da página (hero) — não deve ter esse recuo, senão sobra espaço acima ao voltar ao topo */
#top{ scroll-margin-top: 0; }

.page-content{ overflow-x: hidden; }

body{
  margin: 0;
  padding: 0;
  background-color: var(--accent-4);
  color: #383838;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; height: auto; display: block; border: 0; }

a{ text-decoration: none; color: var(--accent-6); }

ul{ margin: 0; padding: 0; list-style: none; }

p{ margin: 0 0 1em 0; }
p:last-child{ margin-bottom: 0; }

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--accent-1);
  margin: 0 0 .3em 0;
}
h1{ font-size: 48px; line-height: 1.2em; }
h2{ font-size: 36px; line-height: 1.2em; }
h3{ font-size: 30px; line-height: 1.3em; }
h4{ font-size: 24px; line-height: 1.4em; }
h5{ font-size: 20px; line-height: 1.2em; }
h6{ font-size: 16px; line-height: 1.2em; letter-spacing: 1px; }

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}

.eyebrow{
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */
.btn-solid{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  color: var(--btn-text);
  background-color: var(--btn-bg);
  padding: 15px 32px;
  border-radius: 0;
  transition: background-color .25s ease, color .25s ease;
}
.btn-solid:hover{ background-color: var(--btn-hover-bg); color: var(--btn-hover-text); }
.btn-icon{ flex: 0 0 auto; width: 18px; height: 18px; }

.btn-light{
  color: var(--accent-5);
}
.btn-light:hover{ color: var(--accent-8); }

.btn-light.btn-solid{
  background-color: var(--accent-5);
  color: var(--accent-1);
}
.btn-light.btn-solid:hover{ background-color: var(--accent-2); }

.center{ text-align: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  --header-text: var(--accent-5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0000005e;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.site-header.is-scrolled{
  --header-text: var(--accent-1);
  background-color: var(--accent-4);
  border-bottom: 1px solid var(--accent-7);
}
.header-row{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-nav{ flex: 1; display: flex; justify-content: center; }
.header-nav ul{ display: flex; gap: 8px; }
.header-nav a{
  display: block;
  padding: 20px 16px;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  color: var(--header-text);
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  position: relative;
  transition: color .3s ease;
}
.site-header.is-scrolled .header-nav a,
.site-header.nav-open .header-nav a{ text-shadow: none; }
.header-nav a::after{
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header-nav a:hover::after,
.header-nav a.active::after{ transform: scaleX(1); }

/* ---------- Nav dropdown (Serviços) ---------- */
.header-nav li.has-dropdown{
  display: flex;
  align-items: center;
  position: relative;
}
/* Invisible hover bridge: keeps :hover alive while the cursor travels
   diagonally from the trigger down to the page-centered mega-menu. */
.has-dropdown::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, calc(100vw - 40px));
  height: 30px;
}
.dropdown-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 10px;
  margin-left: -4px;
  font-size: 18px;
  line-height: 1;
  color: var(--header-text);
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  cursor: pointer;
  transition: color .3s ease, transform .25s ease;
}
.site-header.is-scrolled .dropdown-toggle,
.site-header.nav-open .dropdown-toggle{ text-shadow: none; }
.has-dropdown:hover .dropdown-toggle,
.has-dropdown.is-open .dropdown-toggle{ transform: rotate(180deg); }

/* Mega-menu: fixed to the viewport so it centers on the page's max-width,
   independent of where the "Serviços" trigger sits in the nav. */
.dropdown-menu{
  position: fixed;
  top: 100px;
  left: 50%;
  width: min(920px, calc(100vw - 40px));
  background-color: var(--accent-5);
  border: 1px solid var(--accent-7);
  box-shadow: 0 16px 30px rgba(0,0,0,.15);
  padding: 22px 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 10;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 14px;
  row-gap: 4px;
}
.dropdown-row + .dropdown-row{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--accent-7);
}
.dropdown-menu a{
  display: block;
  padding: 8px 10px;
  color: var(--accent-1);
  text-shadow: none;
  font-size: 13px;
  line-height: 1.35em;
  text-align: center;
}
.dropdown-menu a::after{ display: none; }
.dropdown-menu a:hover{ background-color: var(--accent-2); }

.header-logo{
  flex: 0 0 auto;
  text-align: left;
}
.header-logo a{
  position: relative;
  display: block;
}
.header-logo img{
  display: block;
  height: 80px;
  width: auto;
}
.header-logo img.logo-black{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transition: opacity .3s ease;
}
.header-logo img.logo-white{
  opacity: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.45));
  transition: opacity .3s ease;
}
.site-header.is-scrolled .header-logo img.logo-white,
.site-header.nav-open .header-logo img.logo-white{ opacity: 0; }
.site-header.is-scrolled .header-logo img.logo-black,
.site-header.nav-open .header-logo img.logo-black{ opacity: 1; }

.header-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.menu-toggle{
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--header-text);
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  cursor: pointer;
  transition: color .3s ease;
}
.site-header.is-scrolled .menu-toggle,
.site-header.nav-open .menu-toggle{ text-shadow: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--accent-1);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: var(--accent-5);
  transform: translateZ(0);
}
.hero-index{ background-image: url("../img/fidalgos-studio-copacabana.webp"); }
.hero-sobre{
  background-image: url("../img/edu-campos-cabeleireiro-em-copacabana.webp");
  background-position: center 25%;
}
.hero-cortes{ background-image: url("../img/corte-feminino-masculino-copacabana.webp"); }
.hero-mechas{ background-image: url("../img/mechas-iluminacao-cabelos-copacabana.webp"); }
.hero-coloracao{ background-image: url("../img/coloracao-correcao-cor-copacabana.webp"); }
.hero-mega-hair{ background-image: url("../img/mega-hair-copacabana.webp"); }
.hero-tratamentos{ background-image: url("../img/tratamentos-capilares-copacabana.webp"); }
.hero-cacheados{ background-image: url("../img/cabelos-cacheados-crespos-copacabana.webp"); }
.hero-maquiagem{ background-image: url("../img/maquiagem-penteados-copacabana-rj.webp"); }
.hero-contato{ background-image: url("../img/localizacao-fidalgos-studio-copacabana.webp"); }
@media (max-width: 425px){
  .hero-index{ background-image: url("../img/fidalgos-studio-copacabana-mobile.webp"); }
  .hero-sobre{ background-image: url("../img/edu-campos-cabeleireiro-em-copacabana-mobile.webp"); }
  .hero-cortes{ background-image: url("../img/corte-feminino-masculino-copacabana-mobile.webp"); }
  .hero-mechas{ background-image: url("../img/mechas-iluminacao-cabelos-copacabana-mobile.webp"); }
  .hero-coloracao{ background-image: url("../img/coloracao-correcao-cor-copacabana-mobile.webp"); }
  .hero-mega-hair{ background-image: url("../img/mega-hair-copacabana-mobile.webp"); }
  .hero-tratamentos{ background-image: url("../img/tratamentos-capilares-copacabana-mobile.webp"); }
  .hero-cacheados{ background-image: url("../img/cabelos-cacheados-crespos-copacabana-mobile.webp"); }
  .hero-maquiagem{ background-image: url("../img/maquiagem-penteados-copacabana-rj-mobile.webp"); }
  .hero-contato{ background-image: url("../img/localizacao-fidalgos-studio-copacabana-mobile.webp"); }
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 10px 30px;
  width: 100%;
  text-align: center;
}
.hero h1{
  color: var(--accent-5);
  margin-bottom: 20px;
}
.hero-divider{
  width: 90px;
  height: 1px;
  background: var(--accent-8);
  margin: 0 auto 20px;
}
.hero-inner p{
  font-size: 18px;
  letter-spacing: .5px;
  color: var(--accent-5);
}

.hero-btn-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.btn-featured{
  font-family: var(--font-heading);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent-5);
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: color .25s ease;
}
.btn-featured:hover{ color: var(--accent-8); }

/* ==========================================================================
   Generic section spacing
   ========================================================================== */
.section{ padding: 60px 0; }
.section-sm{ padding: 50px 0; }
.section-dark{ background-color: var(--accent-1); color: var(--accent-3); }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6{ color: var(--accent-5); }
.section-dark .intro p{ color: var(--accent-5); }
.section-dark .story-row .story-text p{ color: var(--accent-5); }

.check-list.light li{ color: var(--accent-5); border-bottom-color: var(--accent-8); }
.check-list.light li::before{ color: var(--accent-5); }
.section-cream{ background-color: var(--accent-2); }
.section-white{ background-color: var(--accent-5); }

/* ---------- Intro / "A great hairstyle" ---------- */
.intro{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.intro img.icon{ width: 300px; margin: 0 auto 60px; }
.intro p{ max-width: 960px; margin: 0 auto 10px; color: #555; }
.intro .btn-row{ display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }

.check-list{
  max-width: 480px;
  margin: 0 auto 30px;
  text-align: left;
}
.check-list li{
  position: relative;
  padding: 10px 0 10px 22px;
  color: #555;
  border-bottom: 1px solid var(--accent-7);
}
.check-list li:last-child{ border-bottom: 0; }
.check-list li::before{
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-size: 20px;
  line-height: 1;
}

/* ---------- Full width feature photo ---------- */
.feature-photo{ overflow: hidden; }
.feature-photo img{ width: 100%; display: block; }

/* ---------- Salon masonry gallery ---------- */
.salon-gallery-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.salon-gallery-col img{ width: 100%; margin-bottom: 30px; }
.salon-gallery-col h2{ margin-bottom: 15px; }
.salon-gallery-col p{ color: #555; max-width: 420px; }
.salon-gallery-col.offset{ margin-top: 90px; }
.salon-gallery-col.offset img{
  height: 100%;
  margin-bottom: 0;
  object-fit: cover;
}

/* ---------- Moradores e turistas ---------- */
.turistas-grid{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}
.turistas-text{ text-align: left; }
.turistas-text p{ color: #555; max-width: none; }
.turistas-photo img{ width: 100%; display: block; }

/* ---------- Philosophy blocks ---------- */
.philosophy{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.philosophy-block img.main-photo{ width: 70%; margin-bottom: 30px; }
.philosophy-block .eyebrow{ color: #8a8a8a; display: block; margin-bottom: 10px; }
.philosophy-block h2{ margin-bottom: 20px; max-width: 480px; }
.philosophy-block p{ color: #555; max-width: 460px; margin-bottom: 25px; }
.philosophy-block.two img.small-photo{
  width: 70%;
  margin-bottom: 30px;
  transform: rotate(-4deg);
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 70px;
  text-align: center;
}
#porque-escolher .info-grid{ grid-template-columns: repeat(3, 1fr); }
.info-grid > div{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
}
.info-grid h4,
.info-grid-title{
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.4em;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.info-grid p{ color: #555; font-size: 18px; }
.info-grid ul.check-list{ margin: 0 0 15px; max-width: none; }

/* ---------- Artists (dark) ---------- */
.artists-inner{ max-width: 1100px; }
.artist-card{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--accent-8);
  margin-top: 40px;
}
.artist-card img{ width: 100%; border-radius: 2px; }
.artist-card h3{ color: var(--accent-5); margin-bottom: 10px; }
.artist-card p{ color: var(--accent-5); font-size: 18px; line-height: 1.7em; }

/* ---------- Services ---------- */
.services-head{ text-align: center; margin-bottom: 60px; }
.services-head img.icon{ width: 300px; margin: 0 auto 60px; }
.services-head p{ max-width: 960px; margin: 0 auto 15px; color: #555; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.services-grid > div{
  border: 1px solid var(--accent-7);
  padding: 45px 30px;
  text-align: center;
}
.services-grid h3{ margin-bottom: 20px; }
.services-grid p{ color: #555; line-height: 2em; }
.services-grid .note{ font-size: 18px; color: #8a8a8a; margin-top: 15px; }
.services-grid .icon-circle{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent-1);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.services-grid .icon-circle svg{ width: 26px; height: 26px; }

.situations-grid{
  margin-top: 30px;
  grid-template-columns: repeat(6, 1fr);
}
.situations-grid > div{ padding: 30px 18px; }
.situations-grid p{ line-height: 1.5em; }

.contact-cards{ grid-template-columns: repeat(4, 1fr); margin-top: 0; }
.contact-cards > div{ text-align: center; }
.contact-cards p{ margin-bottom: 15px; }
.contact-cards .btn-solid{ padding: 12px 22px; font-size: 13px; }

/* ---------- Mapa (página de contato) ---------- */
.map-frame{
  border: 1px solid var(--accent-7);
  margin-top: 50px;
  line-height: 0;
}
.map-frame iframe{ display: block; width: 100%; height: 450px; }

.services-detail-list{ margin-bottom: 50px; }
.service-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  border-top: 1px solid var(--accent-7);
  padding-top: 45px;
  margin-top: 45px;
}
.service-detail:first-child{ border-top: 0; padding-top: 0; margin-top: 0; }
.service-detail .service-media img{ width: 100%; display: block; }
.service-detail h3{ margin-bottom: 15px; }
.service-detail p{ color: #555; max-width: none; margin-bottom: 15px; }

.services-footer{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--accent-7);
  padding-top: 40px;
}
.services-footer > *{ min-width: 0; }
.happy-hour{ display: flex; gap: 20px; align-items: flex-start; }
.happy-hour .icon-circle{
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
}
.happy-hour-title{
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--accent-1);
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 8px;
}
.happy-hour p{ color: #555; font-size: 18px; }

.services-footer-btn{ justify-self: end; white-space: nowrap; }

.cancellation-note{
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--accent-7);
  font-size: 18px;
  color: #8a8a8a;
  text-align: center;
}

/* ---------- Visagismo (destaque) ---------- */
.visagismo-box{
  background: var(--accent-2);
  border-left: 4px solid var(--accent-1);
  padding: 35px 40px;
  margin: 45px 0;
}
.visagismo-box .eyebrow{ display: block; margin-bottom: 6px; }
.visagismo-box h3{ margin-bottom: 12px; }
.visagismo-box p{ color: #555; margin-bottom: 0; }
.visagismo-box p + p{ margin-top: 12px; }

/* ---------- Must-haves (dark image bg) ---------- */
.musthaves{
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/fotos/agende-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--accent-5);
  text-align: center;
  padding: 130px 0;
}
.musthaves h2{ color: var(--accent-5); }
.musthaves p{ max-width: 760px; margin: 0 auto 30px; color: var(--accent-5); }

.musthaves-split{ text-align: left; padding: 90px 0; }
.musthaves-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.musthaves-text{ text-align: left; }
.musthaves-text p{ margin: 0 0 20px 0; }
.musthaves-text p:last-child{ margin-bottom: 0; }

/* ---------- Products intro ---------- */
.products-intro{ text-align: center; padding-bottom: 0; }
.products-intro .rule{ width: 100px; height: 1px; background: var(--accent-7); margin: 0 auto 25px; }
.products-lead{
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  text-transform: none;
  color: var(--accent-1);
  letter-spacing: .3px;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.product-card{ text-align: center; }
.product-card img{ width: 100%; margin-bottom: 18px; }
.product-card h3{ font-size: 16px; text-transform: none; font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.product-card .price{ color: #6b6b6b; font-size: 18px; margin-bottom: 15px; }
.product-card .step-text{ color: #555; font-size: 18px; margin-bottom: 0; }

.steps-grid .product-card{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
}
.steps-grid .product-card .step-text{ font-size: 16px; }

.steps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

#atendimento-mechas .steps-grid,
#atendimento-coloracao .steps-grid,
#atendimento-mega-hair .steps-grid,
#atendimento-tratamentos .steps-grid,
#atendimento-cacheados .steps-grid,
#atendimento-maquiagem .steps-grid{ grid-template-columns: repeat(3, 1fr); }

/* ---------- Hours & Appointments ---------- */
.hours{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hours-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 55%);
}
.hours-inner{ position: relative; z-index: 1; }
.hours-card{
  background-color: var(--accent-5);
  max-width: 440px;
  padding: 55px 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.hours-card h3{ margin-bottom: 25px; }
.hours-table{ margin-bottom: 35px; }
.hours-row{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--accent-7);
  font-size: 14px;
  color: #444;
}
.hours-card h3.sub{ margin-top: 5px; }
.hours-card address{ font-style: normal; color: #555; margin: 25px 0; font-size: 14px; }
.hours-card address a{ color: #555; text-decoration: underline; }
.hours-card .btn-solid{ display: flex; }
.hours-card .btn-solid + .btn-solid{ margin-top: 15px; }

/* ---------- Testimonials / rating ---------- */
.testimonials{ text-align: center; }
.testimonials .eyebrow{ color: #8a8a8a; display: block; margin-bottom: 10px; }
.testimonials h2{ margin-bottom: 30px; }
.testimonials .lead-text{ max-width: 1100px; margin: 0 auto 20px; color: #555; line-height: 1.7em; }

/* ---------- Instagram strip ---------- */
.instagram-strip{ display: grid; grid-template-columns: repeat(6, 1fr); }
.instagram-strip img{ width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.instagram-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.instagram-head h6{ margin: 0; letter-spacing: 1px; }
.instagram-head a{ font-family: var(--font-label); font-size: 13px; letter-spacing: .5px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background-color: #191919; color: #b8b2a6; padding: 20px 0;}

.footer-main{
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1.5fr;
  gap: 35px;
  padding: 80px 0 50px;
}

.footer-brand .footer-logo{ height: 64px; margin-bottom: 22px; display: block; }
.footer-brand p{ margin-bottom: 22px; max-width: 320px; font-size: 14px; }

.footer-instagram{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-5);
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: .5px;
  border: 1px solid var(--accent-8);
  border-radius: 30px;
  padding: 10px 20px;
}
.footer-instagram svg{ width: 20px; height: 20px; flex-shrink: 0; }
.footer-instagram:hover{ border-color: var(--accent-5); }

.footer-col h3{
  color: var(--accent-5);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ color: #b8b2a6; font-size: 14px; }
.footer-col a:hover{ color: var(--accent-5); }

.footer-col .footer-contact-list{ gap: 16px; }
.footer-contact-list li{ display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-list svg{ width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; color: var(--accent-5); }
.footer-contact-list a{ color: #b8b2a6; }
.footer-contact-list a:hover{ color: var(--accent-5); }
.footer-contact-list span{ font-size: 14px; line-height: 1.6em; }

.footer-accordion{ max-width: 640px; margin: 0 auto 40px; border-top: 1px solid var(--accent-8); }
.footer-accordion details{ border-bottom: 1px solid var(--accent-8); }
.footer-accordion summary{
  cursor: pointer;
  padding: 18px 4px;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: .5px;
  color: var(--accent-5);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-accordion summary::-webkit-details-marker{ display: none; }
.footer-accordion summary::after{ content: "+"; font-size: 18px; }
.footer-accordion details[open] summary::after{ content: "\2212"; }
.footer-accordion .accordion-body{ padding: 0 4px 18px; color: #d8d3ca; font-size: 18px; }
.footer-accordion .accordion-body p{ margin-bottom: 6px; }

.faq-accordion{ max-width: 760px; border-top-color: var(--accent-7); }
.faq-accordion details{ border-bottom-color: var(--accent-7); }
.faq-accordion summary{ color: var(--accent-1); }
.faq-accordion .accordion-body{ color: #555; font-size: 14px; }

.footer-bottom{
  border-top: 1px solid var(--accent-8);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 13px;
  color: #b8b2a6;
}
.footer-bottom a{ color: #b8b2a6; }

/* ---------- Story / editorial blocks (alternating image + text) ---------- */
.story-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}
.story-row:last-child{ margin-bottom: 0; }
.story-row .story-image img{ width: 100%; display: block; }
.story-row .story-text h2{ margin-bottom: 20px; }
.story-row .story-text .eyebrow{ color: #8a8a8a; display: block; margin-bottom: 10px; }
.story-row .story-text p{ color: #555; margin-bottom: 15px; }
.story-row .story-text p:last-of-type{ margin-bottom: 25px; }

/* ---------- Slider antes/depois (arraste a alça central) ---------- */
.ba-slider{
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  --ba-pos: 50%;
  touch-action: pan-y;
}
.ba-image{ position: absolute; inset: 0; }
.ba-image img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before{ clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }

.ba-handle{
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--accent-5);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-btn{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-5);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.ba-handle-btn svg{ width: 22px; height: 22px; }

.ba-label{
  position: absolute;
  top: 16px;
  z-index: 1;
  background: rgba(0,0,0,.55);
  color: var(--accent-5);
  padding: 5px 14px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .2s ease;
}
.ba-label.is-hidden{ opacity: 0; }
.ba-label-before{ left: 16px; }
.ba-label-after{ right: 16px; }

.ba-range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

/* ---------- Statement (no image, centered) ---------- */
.statement{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6em;
  color: var(--accent-1);
}
.statement p{ margin-bottom: 20px; color: inherit; }
.section-dark .statement{ color: var(--accent-5); }

/* ---------- Feature row (icon-circle + heading + text, centered) ---------- */
.feature-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px;
  text-align: center;
}
.feature-row .icon-circle{
  margin: 0 auto 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
}
.feature-row h4,
.feature-row-title{
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 10px;
  color: var(--accent-1);
}
.feature-row p{ color: #555; font-size: 18px; }
.section-dark .feature-row .icon-circle{ border-color: var(--accent-8); color: var(--accent-5); }
.section-dark .feature-row h4{ color: var(--accent-5); }
.section-dark .feature-row p{ color: var(--accent-5); }

/* ---------- Formação (feature-row com borda, 4 em cima / 3 embaixo) ---------- */
#formacao .feature-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#formacao .feature-row > div{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
  flex: 0 1 calc(25% - 30px);
}

/* ---------- Filosofia (feature-row com borda, 5 na mesma linha) ---------- */
#filosofia .feature-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
#filosofia .feature-row > div{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
}

/* ---------- Diferenciais (feature-row com borda, 4 em cima / 3 embaixo) ---------- */
#diferenciais .feature-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#diferenciais .feature-row > div{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
  flex: 0 1 calc(25% - 30px);
}

/* ---------- Critérios do corte (feature-row com borda, 4 em cima / 3 embaixo) ---------- */
#criterios .feature-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#criterios .feature-row > div{
  border: 1px solid var(--accent-7);
  padding: 35px 25px;
  flex: 0 1 calc(25% - 30px);
}

/* ---------- Duas/três colunas de texto (H3 + parágrafo), auto-ajustável ---------- */
.text-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin: 30px 0;
}
.text-grid h3{ font-size: 22px; margin-bottom: 12px; }
.text-grid p{ color: #555; }
.section-cream .text-grid p{ color: #555; }

#planejamento p{ color: #555; }
#renovacao p{ color: #555; }

/* ---------- Contacts / Location / Hours columns ---------- */
.contacts-columns{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.contacts-columns h5{ color: var(--accent-5); margin-bottom: 18px; }
.contacts-columns p, .contacts-columns a.btn-light{ display: block; margin-bottom: 8px; }
.contacts-columns address{ font-style: normal; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--accent-1);
  color: var(--accent-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
  z-index: 999;
}
.back-to-top:hover{ background-color: var(--btn-hover-bg); }
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: background-color .25s ease, transform .25s ease;
  z-index: 998;
}
.whatsapp-float:hover{ background-color: #1EBE57; transform: scale(1.05); }
.whatsapp-float svg{ width: 30px; height: 30px; }

/* ---------- Lightbox ---------- */
.lightbox-trigger{ cursor: pointer; transition: opacity .25s ease; }
.lightbox-trigger:hover{ opacity: .85; }

body.lightbox-open{ overflow: hidden; }

.lightbox-overlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox-overlay.is-active{ opacity: 1; visibility: visible; }
.lightbox-photo{
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  object-fit: contain;
}
.lightbox-close{
  position: fixed;
  top: 20px;
  right: 25px;
  background: none;
  border: 0;
  color: var(--accent-5);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease;
}
.lightbox-close:hover{ color: var(--accent-8); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .container{ padding: 0 24px; }

  /* Header: hamburger menu takes over from tablet down */
  .header-nav{ display: none; }
  .header-actions{ display: none; }
  .menu-toggle{ display: block; padding: 10px; margin: -10px 0 -10px -10px; }
  .header-logo img{ height: 60px; }
  .header-row{ min-height: 90px; }
  [id]{ scroll-margin-top: 110px; }

  .site-header.nav-open{ --header-text: var(--accent-1); background-color: var(--accent-4); border-bottom: 1px solid var(--accent-7); }
  .site-header.nav-open .header-nav{
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background-color: var(--accent-4);
    border-bottom: 1px solid var(--accent-7);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    box-shadow: 0 16px 30px rgba(0,0,0,.1);
  }
  .site-header.nav-open .header-nav ul{ flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .site-header.nav-open .header-nav a{ color: var(--accent-1); padding: 14px 0; }

  .header-nav li.has-dropdown{ flex-wrap: wrap; }
  .header-nav li.has-dropdown > a{ flex: 1; min-width: 0; }
  .has-dropdown::after{ content: none; }
  .dropdown-toggle{ color: var(--accent-1); padding: 14px 10px; margin-left: 0; font-size: 20px; flex: 0 0 auto; }
  .dropdown-menu{
    position: static;
    flex-basis: 100%;
    width: auto;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .3s ease;
  }
  .has-dropdown.is-open .dropdown-menu{ max-height: 600px; padding: 0 0 10px 10px; transform: none; }
  .dropdown-row{ display: block; }
  .dropdown-row + .dropdown-row{ margin-top: 4px; padding-top: 4px; border-top: 0; }
  .dropdown-menu a{ display: block; padding: 10px 0; color: var(--accent-1); white-space: normal; word-break: break-word; text-align: left; }

  h1{ font-size: 40px; }
  h2{ font-size: 32px; }
  h3{ font-size: 24px; }
  .hero{ padding-top: 140px; }
  .salon-gallery-grid, .philosophy, .turistas-grid{ grid-template-columns: 1fr; gap: 40px; }
  .musthaves-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hours-card{ justify-self: start; }
  .salon-gallery-col.offset{ margin-top: 0; }
  .salon-gallery-col.offset img{ height: auto; }
  .service-detail{ grid-template-columns: 1fr; gap: 25px; }
  .service-detail .service-media{ order: -1; }
  .philosophy-block img.main-photo,
  .philosophy-block.two img.small-photo{ width: 100%; transform: none; }
  .artist-card{ grid-template-columns: 140px 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: repeat(2, 1fr); }
  .situations-grid{ grid-template-columns: repeat(3, 1fr); }
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .info-grid{ grid-template-columns: repeat(2, 1fr); }
  #porque-escolher .info-grid{ grid-template-columns: repeat(2, 1fr); }
  #atendimento-mechas .steps-grid,
  #atendimento-coloracao .steps-grid,
  #atendimento-mega-hair .steps-grid,
  #atendimento-tratamentos .steps-grid,
  #atendimento-cacheados .steps-grid,
  #atendimento-maquiagem .steps-grid{ grid-template-columns: repeat(2, 1fr); }
  #formacao .feature-row > div{ flex-basis: calc(50% - 20px); }
  #filosofia .feature-row{ grid-template-columns: repeat(2, 1fr); }
  #diferenciais .feature-row > div{ flex-basis: calc(50% - 20px); }
  #criterios .feature-row > div{ flex-basis: calc(50% - 20px); }
  .instagram-strip{ grid-template-columns: repeat(3, 1fr); }
  .footer-main{ grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hours-overlay{ background: rgba(0,0,0,.35); }
  .story-row{ grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .story-row .story-image{ order: -1; }
  .contacts-columns{ grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 767px){
  .header-row{ padding: 0 20px; min-height: 76px; }
  [id]{ scroll-margin-top: 96px; }
  .header-logo img{ height: 46px; }
  .site-header.nav-open .header-nav{ max-height: calc(100vh - 76px); }
  .site-header.nav-open .header-nav ul{ padding: 10px 20px 20px; }

  h1{ font-size: 28px; }
  h2{ font-size: 28px; }
  .section{ padding: 60px 0; }
  .hero{ min-height: 100vh; padding-top: 120px; }
  .hero-inner{ padding-bottom: 100px; }
  .hero-inner p{ font-size: 16px; line-height: 1.45em; }
  .artist-card{ grid-template-columns: 1fr; text-align: center; }
  .artist-card img{ max-width: 220px; margin: 0 auto; }
  .situations-grid{ grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .situations-grid > div{ padding: 22px 12px; }
  .contact-cards{ grid-template-columns: 1fr; gap: 30px; }
  .map-frame iframe{ height: 320px; }
  .services-detail-list{ margin-bottom: 30px; }
  .services-footer{ grid-template-columns: 1fr; gap: 25px; padding-top: 30px; }
  .services-footer-btn{ justify-self: start; white-space: normal; width: 100%; }
  .visagismo-box{ padding: 28px 24px; }
  .cancellation-note{ margin-top: 25px; padding-top: 20px; }
  .products-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .info-grid{ grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
  #porque-escolher .info-grid{ grid-template-columns: 1fr; }
  #atendimento-mechas .steps-grid,
  #atendimento-coloracao .steps-grid,
  #atendimento-mega-hair .steps-grid,
  #atendimento-tratamentos .steps-grid,
  #atendimento-cacheados .steps-grid,
  #atendimento-maquiagem .steps-grid{ grid-template-columns: 1fr; }
  #formacao .feature-row > div{ flex-basis: 100%; }
  #filosofia .feature-row{ grid-template-columns: 1fr; }
  #diferenciais .feature-row > div{ flex-basis: 100%; }
  #criterios .feature-row > div{ flex-basis: 100%; }
  .hours{ min-height: 0; padding: 60px 0; }
  .hours-card{ max-width: 100%; padding: 40px 25px; }
  .footer-main{ grid-template-columns: 1fr; gap: 35px; padding: 60px 0 40px; }
  .footer-bottom{ flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 480px){
  .container{ padding: 0 18px; }
  .header-row{ padding: 0 18px; }
}
