/* =========================================================
   VARIÁVEIS GLOBAIS
========================================================= */
:root {
  --ink: #0d1117;
  --paper: #f7f4ef;
  --accent: #c8392b;
  --gold: #d4a832;
  --mid: #4a4a4a;
  --light: #e8e3db;
  --white: #ffffff;
}

/* =========================================================
   RESET GERAL
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* =========================================================
   NAVBAR
========================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5%;
  height: 70px;

  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(8px);

  border-bottom: 2px solid var(--accent);
}

/* LOGO */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold);
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: color 0.2s;

  position: relative;
}

.nav-links a::after {
  content: '';

  position: absolute;
  bottom: -4px;
  left: 0;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* MENU MOBILE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  cursor: pointer;

  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;

  width: 26px;
  height: 2px;

  background: var(--white);

  transition: all 0.3s;
}

/* RESPONSIVO NAVBAR */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;

    position: fixed;
    top: 70px;
    left: 0;
    right: 0;

    background: var(--ink);

    flex-direction: column;
    align-items: center;

    padding: 2rem 0;
    gap: 1.8rem;

    border-bottom: 2px solid var(--accent);
  }

  .nav-links.open {
    display: flex;
  }
}

/* =========================================================
   HERO / SLIDESHOW
========================================================= */
#inicio,
.hero-section {
  position: relative;

  width: 100%;
  height: 100vh;

  overflow: hidden;

  margin-top: 70px;
}

/* ── HERO SIMPLES ── */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-top: 70px;
  overflow: hidden;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;

background-image: url('icons/fundo5.jpg');     
  background-size: cover;
  background-position: center; 

  transform: scale(1.05); 
}  

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.55) 
  );
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
  padding: 0 20px;

  color: white;
}

/* TAG */
.hero-tag {
  display: inline-block;

  padding: 8px 16px;
  border-radius: 999px;

  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 20px;
}

/* TÍTULO */
.hero-title {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;

  line-height: 1.1;

  margin-bottom: 20px;
}

/* TEXTO */
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;

  color: rgba(255,255,255,.85);

  margin-bottom: 30px;
}






/* TÍTULO */
.slide-title {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;

  color: var(--white);

  line-height: 1.15;

  margin-bottom: 25px;
}

/* SUBTÍTULO */
.slide-sub {
  font-size: 2rem;
  line-height: 1.7;

  color: rgba(255,255,255,.85);

  margin-bottom: 35px;
}

/* BOTÕES */
.slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOTÃO PRINCIPAL */
.btn-primary {
  display: inline-block;

  background: var(--accent);
  color: var(--white);

  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  text-decoration: none;

  padding: 15px 30px;

  border: none;
  border-radius: 50px;

  cursor: pointer;

  transition: 0.4s;
}

.btn-primary:hover {
  background: #a82a1f;
  transform: translateY(-5px);
}

 



.arrow:hover,
.slide-btn:hover {
  background: var(--accent);
} 



/* DOTS */
.slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 12px;

  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: rgba(255,255,255,.4);

  cursor: pointer;

  transition: .4s;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* RESPONSIVO HERO */
@media(max-width: 768px) {

  .slide-title {
    font-size: 42px;
  }

  .slide-sub {
    font-size: 16px;
  }

  .slide-content {
    padding: 0 7%;
  }

  .slide-btn,
  .arrow {
    width: 45px;
    height: 45px;
  }
}

/* =========================================================
   SECTIONS
========================================================= */
section {
  padding: 90px 5%; 
}

/* TÍTULO DAS SEÇÕES */
.section-label {
  font-size: 0.72rem;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--accent);

  font-weight: 600;

  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;

  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;

  color: var(--ink);

  line-height: 1.2;

  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;

  color: var(--mid);

  max-width: 540px;

  line-height: 1.75;
}

/* =========================================================
   SERVIÇOS
========================================================= */
#servicos {
  background: var(--white);
}

.services-header {
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
  align-items: flex-end;

  gap: 1.5rem;

  margin-bottom: 3.5rem;
}

/* GRID */
.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));

  gap: 2rem;
}

/* CARD */
.service-card {
  background: var(--paper);

  border-top: 4px solid transparent;

  padding: 2.2rem 2rem;

  position: relative;
  overflow: hidden;

  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;

  cursor: default;
}

.service-card::before {
  content: '';

  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(200,57,43,0.04) 0%,
    transparent 60%
  );

  opacity: 0;

  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--accent);

  transform: translateY(-6px);

  box-shadow: 0 20px 48px rgba(13,17,23,0.1);
}

.service-card:hover::before {
  opacity: 1;
}

/* ÍCONE */
.service-icon {
  font-size: 2.2rem;

  margin-bottom: 1.2rem;

  display: block;
}

/* NOME */
.service-name {
  font-family: 'Playfair Display', serif;

  font-size: 1.2rem;
  font-weight: 700;

  color: var(--ink);

  margin-bottom: 0.6rem;
}

/* DESCRIÇÃO */
.service-desc {
  font-size: 0.9rem;

  color: var(--mid);

  line-height: 1.7;
}

/* BADGE */
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  background: var(--accent);
  color: white;

  padding: 3px 10px;
}

/* =========================================================
   SOBRE
========================================================= */
#sobre {
  background: var(--ink);
  color: var(--white);

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 5rem;

  align-items: center;
}

#sobre .section-title {
  color: var(--white);
}

#sobre .section-desc {
  color: rgba(255,255,255,0.65);
  max-width: 100%;
}

/* ESTATÍSTICAS */
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 2rem;

  margin-top: 2.5rem;
}

.stat-box {
  border-left: 3px solid var(--accent);

  padding-left: 1.2rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;

  font-size: 2.2rem;
  font-weight: 900;

  color: var(--gold);

  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;

  color: rgba(236, 139, 12, 0.55);

  margin-top: 0.3rem;
}

/* VISUAL */
.sobre-visual {
  position: relative;
}

.sobre-img-frame {
  background: linear-gradient(
    135deg,
    var(--accent),
    #8b1a12
  );

  padding: 2.5rem;

  position: relative;
}

.sobre-img-frame::before {
  content: '';

  position: absolute;
  top: -16px;
  right: -16px;

  width: 100%;
  height: 100%;

  border: 2px solid var(--gold);

  z-index: -1;
}

.sobre-inner-text {
  font-family: 'Playfair Display', serif;

  font-size: 1.5rem;

  color: white;

  line-height: 1.5;

  font-style: italic;
}

/* RESPONSIVO SOBRE */
@media (max-width: 900px) {

  #sobre {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =========================================================
   CONTATOS
========================================================= */
#contatos {
  background: var(--paper);
}

/* GRID */
.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  margin-top: 3rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* INFORMAÇÕES */ 
.contact-info {
  display: flex;
  flex-direction: column;

  gap: 1.8rem;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;

  gap: 1rem;
}

/* ÍCONE */
.contact-icon { 
  width: 46px;
  height: 46px;

  background: var(--ink);
  color: rgb(247, 11, 11);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem; 

  flex-shrink: 0;
}

/* TEXTO */
.contact-text strong {
  display: block;

  font-size: 0.8rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);

  margin-bottom: 0.2rem;
}

.contact-text span {
  font-size: 0.95rem;
  color: var(--mid);
}

/* FORMULÁRIO */
.contact-form {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* GRUPO */
.form-group {
  display: flex;
  flex-direction: column;

  gap: 0.4rem;
}

/* LABEL */
.form-group label {
  font-size: 0.75rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  font-weight: 600;

  color: var(--ink);
}

/* INPUTS */
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;

  background: var(--white);

  border: 1.5px solid var(--light);

  border-radius: 0;

  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;

  color: var(--ink);

  outline: none;

  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

/* TEXTAREA */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--ink);

  color: rgba(255,255,255,0.5);

  text-align: center;

  padding: 1rem 5%;

  font-size: 0.85rem;
}

footer strong {
  color: var(--gold);
}

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   WHATSAPP FLOAT BUTTON
========================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;

  z-index: 999;

  background: #25D366;
  color: white;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;

  text-decoration: none;

  box-shadow: 0 6px 20px rgba(37,211,102,0.4);

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);

  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
} 

/* imagem do serviço */
.service-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
} 

.btn-service{
    display:inline-block;
    margin-top:15px;
    padding:12px 20px;
    background:#65f015;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:all .3s ease; 
}

.btn-service:hover{
    background:#affa00;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(14, 15, 17, 0.25); 
}   
/* ── SERVICES GRID ── */
  #servicos { background: var(--white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .card { 
    background: var(--light);
    border-radius: 18px; 
    padding: 2rem 1.8rem 1.8rem;
    border: 1.5px solid transparent;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 18px 18px 0 0;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13,31,76,.1);
    border-color: rgba(13,31,76,.08);
  }
  .card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.2rem;
  } 
  .card h3 {
    font-size: 1.05rem; font-weight: 900;
    color: var(--navy); margin-bottom: .5rem;
  } 
  .card p {
    font-size: .85rem; color: var(--gray);
    line-height: 1.6; font-weight: 600; margin-bottom: 1.5rem;
  }
  .card-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
  .btn-wa, .btn-em {
    flex: 1; min-width: 110px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .4rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: .8rem; letter-spacing: .3px;
    padding: .6rem .8rem; border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none; transition: transform .18s, opacity .18s;
  }
  .btn-wa { background: var(--wa); color: #fff; }
  .btn-em { background: var(--navy); color: #fff; }
  .btn-wa:hover, .btn-em:hover { opacity: .85; transform: scale(1.04); }

  /* card color variants */
  .c-cyan  .card-icon { background: rgba(0,180,216,.12); }
  .c-cyan::before { background: var(--cyan); }
  .c-magenta .card-icon { background: rgba(233,30,140,.1); }
  .c-magenta::before { background: var(--magenta); }
  .c-yellow .card-icon { background: rgba(245,200,0,.15); }
  .c-yellow::before { background: var(--yellow); }
  .c-navy .card-icon { background: rgba(13,31,76,.08); }
  .c-navy::before { background: var(--navy); }
  .c-green .card-icon { background: rgba(37,211,102,.12); }
  .c-green::before { background: #25d366; }
  .c-orange .card-icon { background: rgba(255,111,0,.1); }
  .c-orange::before { background: #ff6f00; } 
 
  :root {
    --navy: #0d1117;
    --cyan: #fff7;
    --magenta: #e91e8c;
    --yellow: #f5c800;
    --white: #ffffff;
    --light: #f4f7ff; 
    --gray: #8898aa;
    --wa: #12e760; 
  }

  #sobre .section-desc{
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.2rem;
} 
 
 
.contact-icon iconify-icon {
  font-size: 24px;
  color: #f10707; 
} 
 
/* ── GALERIA ── */
  #galeria { background: var(--dark2); }

  .gallery-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }

  .gallery-item {
    background: var(--dark3);
    border: 1px solid #ffff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; min-height: 320px; }
  .gallery-item:nth-child(2) { grid-column: span 4; min-height: 155px; }
  .gallery-item:nth-child(3) { grid-column: span 3; min-height: 155px; }
  .gallery-item:nth-child(4) { grid-column: span 3; min-height: 155px; }
  .gallery-item:nth-child(5) { grid-column: span 4; min-height: 155px; }
  .gallery-item:nth-child(6) { grid-column: span 4; min-height: 200px; }
  .gallery-item:nth-child(7) { grid-column: span 4; min-height: 200px; }
  .gallery-item:nth-child(8) { grid-column: span 4; min-height: 200px; }

  .gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    transition: background .3s;
  }

  .gallery-item:hover .gallery-placeholder { background: rgba(200,168,75,0.06); }

  .gallery-icon {
    font-size: 2rem;
    opacity: .2;
    color: var(--gold);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(100%);
    transition: transform .3s;
  }

  .gallery-item:hover .gallery-caption { transform: translateY(0); }

  .gallery-caption-title {
    font-size: .85rem;
    color: var(--white);
    font-weight: 500;
  }

  .gallery-caption-sub {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: .1em;
  }

  .gallery-tag {
    position: absolute;
    top: .8rem; right: .8rem;
    padding: .25rem .7rem;
    background: rgba(221, 219, 212, 0.15);
    border: 1px solid rgba(200,168,75,0.25);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    backdrop-filter: blur(4px);
  }

  .gallery-placeholder-icon-big {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border: 1px solid rgba(200,168,75,0.15);
    color: var(--gold);
    opacity: .4;
    font-size: 1.8rem;
  }

  .gallery-placeholder-text {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
  }
 
  :root {
    --gold: #c8a84b;
    --gold-light: #e2c97e;
    --gold-dim: rgba(200,168,75,0.15);
    --dark: #0d0d0d;
    --dark2: #141414;
    --dark3: #1c1c1c;
    --dark4: #252525;
    --mid: #2e2e2e;
    --text: #ffff;
    --muted: #9e9483;
    --white: #f9f5ee;
  } 
 



  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2.2rem;
    background: var(--gold);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s; 
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2.2rem;
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(200,168,75,0.3);
    cursor: pointer;
    transition: border-color .25s, color .25s, transform .2s;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp .8s 1s forwards;
  }

  
  /* ── GALERIA ── */
  #galeria { background: var(--dark2); }

  .gallery-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }

  .gallery-item {
    background: var(--dark3);
    border: 1px solid rgba(200,168,75,0.07);
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; min-height: 320px; }
  .gallery-item:nth-child(2) { grid-column: span 4; min-height: 155px; }
  .gallery-item:nth-child(3) { grid-column: span 3; min-height: 155px; }
  .gallery-item:nth-child(4) { grid-column: span 3; min-height: 155px; }
  .gallery-item:nth-child(5) { grid-column: span 4; min-height: 155px; }
  .gallery-item:nth-child(6) { grid-column: span 4; min-height: 200px; }
  .gallery-item:nth-child(7) { grid-column: span 4; min-height: 200px; }
  .gallery-item:nth-child(8) { grid-column: span 4; min-height: 200px; }

  .gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    transition: background .3s;
  }

  .gallery-item:hover .gallery-placeholder { background: rgba(200,168,75,0.06); }

  .gallery-icon {
    font-size: 2rem;
    opacity: .2;
    color: var(--gold);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(100%);
    transition: transform .3s;
  }

  .gallery-item:hover .gallery-caption { transform: translateY(0); }

  .gallery-caption-title {
    font-size: .85rem;
    color: var(--white);
    font-weight: 500;
  }

  .gallery-caption-sub {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: .1em;
  }

  .gallery-tag {
    position: absolute;
    top: .8rem; right: .8rem;
    padding: .25rem .7rem;
    background: rgba(200,168,75,0.15);
    border: 1px solid rgba(200,168,75,0.25);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    backdrop-filter: blur(4px);
  }

  .gallery-placeholder-icon-big {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border: 1px solid rgba(200,168,75,0.15);
    color: var(--gold);
    opacity: .4;
    font-size: 1.8rem;
  }

  .gallery-placeholder-text {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
  } 

  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(200,168,75,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    transition: border-color .25s, color .25s, background .25s;
  }

 /* Títulos da Galeria */
#galeria .section-eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

#galeria .section-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

#galeria .section-sub {
    color: rgba(255,255,255,.85);
}  

#contatos{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
}

.contact-grid{
    display:grid !important;
}

.reveal{
    opacity:1 !important;
    transform:none !important;
}   


#servicos-destaque{
    padding:80px 10%;
    text-align:center;
}

#servicos-destaque h2{
    font-size:2.2rem;
    margin-bottom:10px;
}

#servicos-destaque p{
    color:#777;
    margin-bottom:40px;
}

.servicos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.servico-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.servico-card:hover{
    transform:translateY(-8px);
}

.servico-card iconify-icon{
    font-size:50px;
    color:#d4a832;
    margin-bottom:15px;
}

.servico-card h3{
    margin-bottom:10px;
}

.center{
    margin-top:40px;
} 

#servicos-destaque {
  text-align: center;
  padding: 60px 20px; 
}

#servicos-destaque .container {
  max-width: 1100px;
  margin: 0 auto;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 CENTRALIZA OS CARDS */
  gap: 25px;
  margin-top: 30px;
}

.servico-card {
  width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center; /* 👈 CENTRALIZA TEXTO E ÍCONES */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  display: flex;
  justify-content: center; /* 👈 CENTRALIZA O SVG */
  align-items: center;
  margin-bottom: 15px;
}

.card-icon svg {
  width: 70px;
  height: 70px;
} 

#servicos-destaque {
  text-align: center;
  padding: 60px 20px;
}

#servicos-destaque .container {
  max-width: 1100px;
  margin: 0 auto;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 CENTRALIZA OS CARDS */
  gap: 25px;
  margin-top: 30px;
}

.servico-card {
  width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center; /* 👈 CENTRALIZA TEXTO E ÍCONES */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  display: flex;
  justify-content: center; /* 👈 CENTRALIZA O SVG */
  align-items: center;
  margin-bottom: 15px;
}

.card-icon svg {
  width: 70px;
  height: 70px;
}
