:root{
  --skina-yellow:#f5e56e;
  --skina-accent:#d4705b;
  --skina-dark:#121212;
  --skina-border:#e5e7eb;
  --wa-green:#25D366;
  --ink:#0f1115;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }

html, body{
  height:100%;
}

body{
  font-family:"Roboto",sans-serif;
  color:#111;
  margin:0;
  background:#fff;
}

.section{
  padding: var(--space-xl) 0;
}

.section-title{
  margin-bottom: var(--space-md);
}

.section-subtitle{
  margin-bottom: var(--space-lg);
}

h1{
  font-size:42px;
  font-weight:700;
  line-height:1.2;
}

h2{
  font-size:32px;
  font-weight:600;
}

p{
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* =========================
   HEADER
========================= */
.brand-header{
  background:#0b0b0b;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.brand-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:86px;
  padding-top:10px;
  padding-bottom:10px;
}

.brand-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.logo-topo{
  display:block;
  width:auto;
  max-width:360px;
  max-height:64px;
  height:auto;
  object-fit:contain;
}

/* =========================
   BOTÕES TOPO
========================= */
.hero-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn-primary-cta,
.btn-secondary-cta,
.btn-cta,
.btn-cta-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:.78rem 1.15rem;
  border-radius:14px;
  font-weight:800;
  font-size:.98rem;
  text-decoration:none;
  line-height:1;
  white-space:nowrap;
  transition:all .18s ease;
  opacity:1 !important;
}

.btn-primary-cta{
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.btn-primary-cta:hover{
  background:#f6f6f6 !important;
  color:#111 !important;
  transform:translateY(-1px);
}

.btn-secondary-cta{
  background:#25D366 !important;
  color:#fff !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:0 10px 22px rgba(0,0,0,.20);
}
.btn-secondary-cta:hover{
  background:#20c55a !important;
  color:#fff !important;
  transform:translateY(-1px);
}

.btn-primary-cta .bi,
.btn-secondary-cta .bi{
  font-size:1.05em;
  line-height:1;
}

.btn-primary-cta:focus,
.btn-secondary-cta:focus,
.btn-cta:focus,
.btn-cta-outline:focus{
  outline:none !important;
  box-shadow:none !important;
}

.btn-primary-cta:focus-visible,
.btn-secondary-cta:focus-visible,
.btn-cta:focus-visible,
.btn-cta-outline:focus-visible{
  box-shadow:0 0 0 4px rgba(212,112,91,.25) !important;
}

/* =========================
   HERO HOME
========================= */
.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.68) 100%),
    url("images/wallpaper.png") center center / cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.01));
  pointer-events:none;
}

.hero .container{
  position:relative;
  z-index:1;
  padding-top:5rem !important;
  padding-bottom:5rem !important;
}

.hero-kicker{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(0,0,0,.55);
  font-weight:700;
  margin-bottom:1rem;
}

.hero-title{
  font-weight:800;
  line-height:1.04;
  letter-spacing:-0.04em;
  font-size:clamp(2.4rem, 3.2vw, 4.2rem);
  color:rgba(17,17,17,.95);
  max-width:9.8ch;
  margin-bottom:1.2rem;
}

.hero .col-lg-7{
  max-width:700px;
}

.hero-services{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem .9rem;
  color:rgba(0,0,0,.70);
  font-weight:500;
  font-size:1rem;
  margin-top:.5rem;
  margin-bottom:1.4rem;
  max-width:620px;
}

.hero-services span{
  position:relative;
  padding-left:.85rem;
}

.hero-services span::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--skina-accent);
  position:absolute;
  left:0;
  top:.55em;
}

.hero-lead{
  margin-bottom:.9rem;
  font-weight:500;
  color:rgba(0,0,0,.78);
}

.hero p.text-muted{
  margin-bottom:1.8rem !important;
  color:rgba(0,0,0,.68) !important;
  line-height:1.65;
}

/* =========================
   BOTÕES HERO
========================= */
.btn-cta{
  background:#111;
  color:#fff !important;
  border:1px solid transparent !important;
  box-shadow:0 14px 28px rgba(0,0,0,.14);
}

.btn-cta:hover{
  background:#000;
  color:#fff !important;
  transform:translateY(-1px);
}

.btn-cta-outline{
  background:transparent !important;
  color:var(--skina-dark) !important;
  border:1px solid rgba(0,0,0,.22) !important;
}

.btn-cta-outline:hover{
  background:rgba(0,0,0,.06) !important;
  color:var(--skina-dark) !important;
  transform:translateY(-1px);
}

/* FUNDO FULL SCREEN */
.gallery-bg {
  position: relative;
  min-height: 100vh;
  background: url('images/galeria.png') center/cover no-repeat fixed;
}

/* OVERLAY ESCURO */
.gallery-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

/* REMOVE FUNDO BRANCO DAS SECTIONS */
.gallery-page,
section.py-5 {
  background: transparent !important;
}
/* GARANTE QUE O CONTEÚDO FIQUE NA FRENTE */
.gallery-bg > * {
  position: relative;
  z-index: 1;
}

/* CONTEÚDO FICA NA FRENTE */
.gallery-page-bg > * {
  position: relative;
  z-index: 1;
}
/* =========================
   CARD HERO
========================= */
.hero-card{
  border:1px solid rgba(255,255,255,.45) !important;
  background:rgba(255,255,255,.78) !important;
  backdrop-filter:blur(10px);
  box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* =========================
   PILLS
========================= */
.pill{
  padding:.62rem .95rem;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(6px);
  font-weight:700;
  text-decoration:none;
  color:rgba(17,17,17,.88);
  border:1px solid rgba(0,0,0,.06);
  transition:background .15s ease, color .15s ease, transform .12s ease;
}

.pill:hover{
  background:#111;
  color:#fff;
  transform:translateY(-1px);
}

/* =========================
   BOTÃO MODAL
========================= */
.btn-skina{
  padding:.62rem .95rem;
  border-radius:5px;
  background:rgba(231,229,229,.72);
  backdrop-filter:blur(6px);
  font-weight:700;
  text-decoration:none;
  color:rgba(17,17,17,.88);
  border:1px solid rgba(0,0,0,.06);
  transition:background .15s ease, color .15s ease, transform .12s ease;
}

.btn-skina:hover{
  background:#111;
  color:#fff;
  transform:translateY(-1px);
}
.btn-outline-dark{
     --bs-btn-border-color: #d5d5d5;

}
/* =========================
   WHATSAPP LINKS
========================= */
.wa-green{
  color:var(--wa-green);
}

.wa-link{
  color:inherit;
  text-decoration:none;
  font-weight:700;
}

.wa-link:hover{
  text-decoration:underline;
}

.wa-link .bi{
  font-size:18px;
  line-height:1;
}

/* =========================
   GALLERY HERO PAGE
========================= */
.gallery-hero{
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.96)),
    #fff;
}

.gallery-kicker{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.8rem;
  color:rgba(0,0,0,.58);
  font-weight:700;
}

.gallery-title{
  font-size:clamp(2.1rem, 4vw, 3.6rem);
  line-height:1.05;
  font-weight:900;
  color:rgba(17,17,17,.96);
}

.gallery-text{
  max-width:62ch;
  color:rgba(0,0,0,.70);
  font-size:1.05rem;
  line-height:1.7;
}

.gallery-hero-card{
  display:grid;
  gap:12px;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.gallery-hero-badge{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(0,0,0,.78);
  font-weight:700;
}

/* =========================
   GALLERY TOOLBAR
========================= */
.gallery-toolbar{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.05);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.filter-btn{
  padding:.62rem .95rem;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(6px);
  font-weight:700;
  text-decoration:none;
  color:rgba(17,17,17,.88);
  border:1px solid rgba(0,0,0,.06);
  transition:background .15s ease, color .15s ease, transform .12s ease;
}

.filter-btn:hover{
  background:#111;
  color:#fff;
  transform:translateY(-1px);
}



.navbar-toggler{
  filter: invert(1);
}

.navbar-collapse{
  background: #0b0b0b;
  padding: 16px;
  border-radius: 12px;
  margin-top: 10px;
   box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page{
  background:#fff;
}

/* Overlay opcional */
.gal-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity:0;
  display:flex;
  align-items:flex-end;
  padding:16px;
  transition:opacity .25s ease;
}

.gal-card:hover .gal-overlay{
  opacity:1;
}

.gal-overlay-text{
  color:#fff;
  font-weight:700;
  font-size:.9rem;
}

/* Cards da galeria nova */
.gal-card{
  position:relative;
  padding:0;
  border:0;
  background:transparent;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,0,0,.09);
  transition:transform .16s ease, box-shadow .16s ease;
}

.gal-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(0,0,0,.13);
}

.gal-card .gal-img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity .25s ease;
}

.gal-card.is-loaded .gal-img{
  opacity:1;
}

.gal-card .gal-skeleton{
  position:absolute;
  inset:0;
  border-radius:18px;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.06),
    rgba(0,0,0,.10),
    rgba(0,0,0,.06)
  );
  background-size:200% 100%;
  animation:skeletonShimmer 1.1s linear infinite;
}

.gal-card.is-loaded .gal-skeleton{
  display:none;
}

.gal-chip{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(0,0,0,.74);
  color:#fff;
  border-radius:999px;
  padding:.45rem .75rem;
  font-size:.85rem;
  font-weight:700;
  backdrop-filter:blur(6px);
}

.gallery-cta-section{
  padding:12px 0 48px;
  background:#fff;
}

.gallery-cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding:26px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(11,11,11,.98), rgba(25,25,25,.95));
  color:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.16);
}

.gallery-cta-kicker{
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  font-weight:700;
}

.gallery-cta-title{
  font-weight:900;
  font-size:clamp(1.5rem, 3vw, 2.1rem);
}

.gallery-cta-text{
  color:rgba(255,255,255,.74);
  max-width:58ch;
}

.gallery-cta-btn{
  white-space:nowrap;
}

/* =========================
   SKELETON ANIMATION
========================= */
@keyframes skeletonShimmer{
  0%{ background-position:200% 0; }
  100%{ background-position:-200% 0; }
}

/* =========================
   MODAL
========================= */
.modal-skin{
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.modal-topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.modal-title{
  font-weight:900;
}

.modal-sub{
  color:rgba(0,0,0,.62);
  margin-top:4px;
}

.modal-media{
  background:#0b0b0b;
}

.modal-img{
  width:100%;
  max-height:70vh;
  object-fit:contain;
  display:block;
}

.modal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  padding:14px 20px 18px;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
}

/* =========================
   MAPA
========================= */
.map-full{
  width:100%;
  height:520px;
  border-top:1px solid rgba(0,0,0,.06);
}

.map-full iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#0b0b0b;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
}

.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.logo-rodape{
  width:auto;
  max-width:220px;
  max-height:44px;
  height:auto;
  object-fit:contain;
  opacity:.95;
}

.footer-muted{
  color:rgba(255,255,255,.70);
  display:block;
  margin-top:8px;
  line-height:1.35;
}

.site-footer a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.site-footer a:hover{
  text-decoration:underline;
}

/* =========================
   WHATSAPP FLOAT / BAR
========================= */
.wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:999px;
  background:var(--wa-green);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
  z-index:9999;
  text-decoration:none;
}

.wa:hover{
  filter:brightness(.95);
  color:#fff;
}

.wa .bi{
  font-size:28px;
  line-height:1;
}

.wa-text{
  display:none;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 992px){
  .logo-topo{
    max-width:300px;
    max-height:58px;
  }

  .gal-card .gal-img{
    height:220px;
  }
}

@media (max-width: 768px){
  .brand-container{
    justify-content:center !important;
    text-align:center;
    padding-left:0;
    padding-right:0;
  }

  .brand-link{
    display:flex;
    justify-content:center;
    width:100%;
  }

  .logo-topo{
    margin:0 auto;
    display:block;
  }

  .brand-actions{
    display:none !important;
  }
}

@media (max-width: 576px){
  /* Header */
  .brand-container{
    justify-content:center;
    min-height:78px;
  }

  .logo-topo{
    max-width:280px;
    max-height:54px;
  }

  /* Hero */
  .hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.90)),
      url("images/wallpaper.png") center center / cover no-repeat;
  }

  .hero-title{
    font-size:2.45rem;
    line-height:1.08;
    max-width:none;
  }

  .hero .col-lg-7{
    max-width:100%;
  }

  .hero .container{
    padding-top:3rem !important;
    padding-bottom:3rem !important;
  }

  .hero .col-lg-7,
  .hero .col-lg-5{
    text-align:center;
  }

  .hero-services{
    justify-content:center;
    margin-top:1rem;
    margin-bottom:1.6rem;
    max-width:100%;
  }

  .hero-services span{
    padding-left:.85rem;
  }

  .d-flex.flex-wrap.gap-2{
    justify-content:center;
  }

  /* Galeria page */
  .gallery-hero{
    text-align:center;
  }

  .gallery-text{
    margin-left:auto;
    margin-right:auto;
  }

  .gallery-hero-card{
    text-align:left;
  }

  .gallery-filters{
    justify-content:center;
  }

  .gal-card .gal-img{
    height:190px;
  }

  .gallery-cta-box{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }

  .gallery-cta-btn{
    width:100%;
    justify-content:center;
  }

  /* Modal */
  .modal-topbar{
    padding:14px 14px;
  }

  .modal-actions{
    padding:12px 14px 14px;
  }

  /* Mapa */
  .map-full{
    height:360px;
  }

  /* Footer */
  .footer-wrap{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .site-footer{
    padding-bottom:64px;
  }

  /* WhatsApp mobile */
  .wa{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:64px;
    border-radius:0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
  }

  .wa-text{
    display:block;
    font-weight:900;
    color:#fff;
    letter-spacing:.01em;
  }
}
/* =========================
   GALERIA HOME (ISOLADA)
========================= */
.gal-item{
  position: relative;
  padding:0;
  border:0;
  background:transparent;
  width:100%;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .12s ease, box-shadow .12s ease;
}

.gal-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.gal-item img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity .25s ease;
}

.gal-item.is-loaded img{
  opacity:1;
}

/* skeleton */
.gal-item .gal-skeleton{
  position:absolute;
  inset:0;
  border-radius:16px;
  background:linear-gradient(90deg,
    rgba(0,0,0,.06),
    rgba(0,0,0,.10),
    rgba(0,0,0,.06)
  );
  background-size:200% 100%;
  animation:skeletonShimmer 1.1s linear infinite;
}

.gal-item.is-loaded .gal-skeleton{
  display:none;
}
.gal-card{
  position:relative;
  width:100%;
  aspect-ratio: 4 / 3; /* 🔥 mantém todos iguais */
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,0,0,.09);
  transition:transform .16s ease, box-shadow .16s ease;
}

.gal-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}