/* =============================================================
   VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ============================================================= */
:root {
  --preto: #0b0b0b;
  --preto-deep: #050505;   /* Para o fundo principal */
  --preto-claro: #121212;  /* Para dar contraste nas camadas */
  --cinza-escuro: #111111;
  --cinza-medio: #1a1a1a;
  --dourado: #c5a46d;
  --dourado-hover: #e0c28a;
  --branco: #f5f5f5;
  --texto-suave: #cccccc;
  --transition-premium: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 1px;
}

section {
  padding: 120px 20px; /* Respiro de luxo entre seções */
}

/* =============================================================
   NAVBAR CUSTOMIZADA
   ============================================================= */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 20px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: var(--transition-premium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-custom.scrolled {
  padding: 12px 50px;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  justify-self: start;
  font-size: 22px;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Playfair Display';
  font-weight: 600;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: 0.3s;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--dourado);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =============================================================
   ÍCONE DE LOGIN - PRATEADO / METALIZADO
   ============================================================= */
.login-icon {
    justify-self: end; /* Garante que fique à direita no grid da navbar */
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Efeito Prateado (Aço Escovado) */
    background: linear-gradient(145deg, #ffffff 0%, #d1d1d1 50%, #ababab 100%);
    
    /* Relevo e Brilho Metálico */
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.3), 
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    
    border: 1px solid #999;
}

/* O ícone dentro da moeda de prata */
.login-icon i {
    font-size: 15px;
    color: #333; /* Cinza chumbo para contraste */
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Hover Interativo */
.login-icon:hover {
    transform: scale(1.1);
    background: linear-gradient(145deg, #ffffff 0%, #e6e6e6 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.login-icon:active {
    transform: scale(0.95);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .login-icon {
        display: none; /* Esconde no mobile se você estiver usando o menu hambúrguer */
    }
    
     /* FORÇAR FILTROS EM UMA LINHA SÓ */
    .filter-wrapper {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: nowrap !important; /* Impede a quebra de linha */
        gap: 10px !important; /* Reduz o espaço entre os botões */
        overflow-x: auto; /* Permite rolar para o lado se o celular for MUITO pequeno */
        padding: 10px 5px !important;
        width: 100%;
        -webkit-overflow-scrolling: touch; /* Rolagem suave no iPhone */
    }

    /* Esconde a barra de rolagem para manter o visual limpo */
    .filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        font-size: 10px !important; /* Diminui levely a fonte */
        letter-spacing: 1px !important; /* Diminui o espaçamento entre letras */
        padding: 8px 10px !important; /* Diminui o respiro interno do botão */
        white-space: nowrap !important; /* Garante que o texto do botão não quebre */
    }
}
    
    
}

   .about-description, 
    .lead-text, 
    .secondary-text,
    .about-description p {
        text-align: center !important; /* Remove o justificado que cria buracos */
        text-align-last: center !important;
        font-size: 1rem !important; /* Ajusta o tamanho para não ficar bruto */
        line-height: 1.6 !important;
        padding: 0 10px; /* Dá um respiro nas laterais */
    }

    .motto-text {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        padding: 0 20px !important;
    }

    /* Reduz o monograma ou ícones que possam estar empurrando o layout */
    .about-monogram::after {
        height: 30px;
    }

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  justify-self: end;
}

@media (max-width: 992px) {
  .nav-links, .login-icon { display: none; }
  .navbar-custom { 
    grid-template-columns: 1fr auto; 
    padding: 15px 25px;
  }
  .menu-toggle { display: block; }
}

/* =============================================================
   MENU MOBILE (VERSÃO CARDS DE LUXO)
   ============================================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Reduzido o gap para acomodar os botões maiores */
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 9999;
  backdrop-filter: blur(15px); /* Desfoque mais intenso para luxo */
  background: rgba(0, 0, 0, 0.96); 
}

.mobile-menu.active {
  left: 0;
}

/* ESTILO DOS LINKS EM FORMATO DE CARD */
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  
  /* Estrutura do Card */
  width: 80%; /* Largura do botão */
  padding: 18px 20px;
  text-align: center;
  border-radius: 8px;
  
  /* Fundo sutil e borda quase invisível */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* EFEITO DE LUZ E GLOW NO HOVER */
.mobile-menu a:hover, 
.mobile-menu a:active {
  background: rgba(197, 164, 109, 0.1); /* Fundo dourado sutil */
  border-color: rgba(197, 164, 109, 0.4); /* Borda dourada brilha */
  color: var(--dourado);
  transform: scale(1.03); /* Leve pulsação */
  
  /* A "Luz" clara que você pediu (Glow) */
  box-shadow: 0 0 30px rgba(197, 164, 109, 0.2);
  letter-spacing: 4px; /* Expansão elegante do texto */
}

/* BOTÃO DE FECHAR (MOEDA PRATEADA) */
.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: #333; 
    line-height: 1;
    
    /* Efeito Prateado (Aço Escovado) */
    background: linear-gradient(145deg, #ffffff 0%, #d1d1d1 50%, #ababab 100%);
    border-radius: 50%;
    
    /* Relevo e Brilho Metálico */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4), 
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    
    border: 1px solid #999;
    z-index: 10001;
    transition: 0.3s;
}

.mobile-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: #000;
}

/* LINK DE ADMIN (Diferenciado) */
.mobile-admin-link {
    margin-top: 30px !important;
    font-size: 13px !important;
    color: var(--dourado) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px dashed rgba(197, 164, 109, 0.4) !important; /* Borda tracejada para área técnica */
    background: rgba(197, 164, 109, 0.05) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-admin-link i {
    font-size: 14px;
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
  animation: zoomSmooth 20s ease-in-out infinite alternate;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: 0;
}

.hero > div {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

@keyframes zoomSmooth {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 900px;
}

.hero p {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-bottom: 40px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-hover));
  padding: 18px 45px;
  border-radius: 2px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  transition: var(--transition-premium);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(197, 164, 109, 0.3);
  filter: brightness(1.1);
}


.filter-wrapper{
  text-align:center;
  margin-bottom:30px;
}

.filter-btn{
  background:none;
  border:1px solid var(--dourado);
  color:var(--dourado);
  padding:8px 20px;
  margin:5px;
  cursor:pointer;
  border-radius:20px;
  transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
 
  color:#000;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
}

/* ITEM */
.grid-item{
  display:none;
  position:relative;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  background:#111;
  
}

/* IMAGEM */
.grid-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:.4s;
}

.grid-item:hover img{
  transform:scale(1.05);
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.3s;
}

.grid-item:hover .overlay{
  opacity:1;
}

.overlay span{
  color:#fff;
  border:1px solid rgba(255,255,255,0.5);
  padding:8px 18px;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}



/* SOBRE */

#sobre {
  background-color: var(--preto-claro); /* Isso separa os projetos dos diferenciais */
  text-align: center;
}

/* =============================================================
   DIFERENCIAIS CENTRALIZADOS + GRID REFINADO
   ============================================================= */
.diferenciais-centered {
  background-color: #0b0b0b;
  padding: 120px 20px;
}

/* Cabeçalho centralizado */
.section-intro-gold {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.monogram-icon i { color: var(--dourado); font-size: 20px; }
.vertical-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
  margin: 15px 0;
}
.title-premium {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: #fff; font-weight: 400;
}
.signature-line-horizontal {
  width: 80px; height: 1px; background: var(--dourado);
  position: relative; margin: 20px 0 30px;
}
.signature-line-horizontal::after {
  content: ""; position: absolute; top: -2px; left: 50%;
  transform: translateX(-50%); width: 5px; height: 5px;
  background-color: var(--dourado); border-radius: 50%;
}
.intro-desc {
  color: #888; font-size: 1.1rem; max-width: 700px; line-height: 1.8;
}

/* Grid Principal */
.diferenciais-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

/* Imagem */
.diferencial-image-box .image-wrapper {
  position: relative;
}
.diferencial-image-box img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.experience-tag {
  position: absolute; bottom: -15px; right: -15px;
  background: var(--dourado); color: #000; padding: 20px;
  border-radius: 4px; text-align: center;
}
.experience-tag strong { display: block; font-size: 2rem; line-height: 1; font-family: 'Playfair Display'; }
.experience-tag span { font-size: 10px; text-transform: uppercase; font-weight: 600; }

/* Cards com Bordas e Fundo */
.diferencial-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card-premium {
  background: rgba(255, 255, 255, 0.02); /* Fundo sutil */
  border: 1px solid rgba(197, 164, 109, 0.15); /* Bordas que voltaram */
  padding: 35px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.feature-card-premium i {
  color: var(--dourado); font-size: 24px; margin-bottom: 20px; display: block;
}

.feature-card-premium h3 {
  color: #fff; font-size: 1.15rem; margin-bottom: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 500;
}

.feature-card-premium p {
  color: #777; font-size: 0.9rem; line-height: 1.6; margin: 0;
}

/* Hover nos Cards */
.feature-card-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dourado);
  transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 1200px) {
  .diferenciais-main-grid { grid-template-columns: 1fr; gap: 50px; }
  .diferencial-image-box { max-width: 600px; margin: 0 auto; order: 2; }
  .diferencial-cards-grid { order: 1; }
}

@media (max-width: 768px) {
  .title-premium { font-size: 2rem; }
  .diferencial-cards-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
.depoimentos {
  background-color: var(--preto-claro); /* Destaca a seção inteira */
}

/* Reutilizando o padrão de cabeçalho para consistência */
.depoimentos .section-intro-gold {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.depo-card {
  background: var(--preto); /* O card volta a ser preto absoluto para "pular" para fora do fundo */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 45px;
  border-radius: 8px;
  transition: var(--transition-premium);
}

.depo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 164, 109, 0.3);
}

.depo-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.depo-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--dourado);
}

.google-icon {
  margin-left: auto;
  color: #4285F4;
  font-size: 20px;
}

.stars {
  color: #fbbc05;
  margin-bottom: 20px;
  font-size: 14px;
}

.depo-card p {
  color: var(--texto-suave);
  font-size: 15px;
  font-style: italic;
}

/* =============================================================
   WHATSAPP (CORREÇÃO ABSOLUTA DO TRAÇO)
   ============================================================= */
.whatsapp {
  position: fixed;
  bottom: 35px;
  right: 35px;
  background: #25d366;
  color: #fff !important;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition-premium);
  
  /* Reset de Link */
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.whatsapp i {
  font-size: 35px;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
}

.whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background: #20ba5a;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* =============================================================
   MODAL CUSTOM
   ============================================================= */
.modal-custom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2000;
}

.modal-custom.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-custom {
  max-width: 90%;
  max-height: 90vh;
}

.modal-content-custom img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* =============================================================
   ANIMAÇÃO DE SCROLL
   ============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* CONTATO */

#contato {
  background-color: var(--preto-deep);
  text-align: center;
}

/* =============================================================
   FILTROS E BOTÃO VER TUDO
   ============================================================= */
.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #777;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: 0.4s;
}

.filter-btn.active {
  color: var(--dourado);
}

.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: 0.4s;
  transform: translateX(-50%);
}

.filter-btn.active::after {
  width: 100%;
}

/* BOTÃO VER GALERIA COMPLETA */
.view-all-wrapper {
  text-align: center;
  margin-top: 60px;
}

.btn-outline-gold {
  padding: 15px 40px;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  transition: var(--transition-premium);
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--dourado);
  color: #000;
  box-shadow: 0 10px 30px rgba(197, 164, 109, 0.2);
}

/* Esconder itens que excedem o limite ou filtro */
.grid-item.hidden {
  display: none !important;
}

/* =============================================================
   MODAL DE LOGIN PREMIUM
   ============================================================= */
.modal-login {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2500;
}

.modal-login.active {
  opacity: 1;
  visibility: visible;
}

.login-box {
  background: #111;
  width: 100%;
  max-width: 400px;
  padding: 50px;
  border-radius: 4px;
  border: 1px solid rgba(197, 164, 109, 0.2);
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: 0.5s;
}

.modal-login.active .login-box {
  transform: translateY(0);
}

.close-login {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #777;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.close-login:hover { color: var(--dourado); }

.login-header i {
  font-size: 40px;
  color: var(--dourado);
  margin-bottom: 20px;
}

.login-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.login-header p {
  font-size: 13px;
  color: #777;
  margin-bottom: 40px;
}

/* INPUTS */
.input-group {
  text-align: left;
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dourado);
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #fff;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-bottom-color: var(--dourado);
}

/* BOTÃO LOGIN */
.btn-login {
  width: 100%;
  background: var(--dourado);
  color: #000;
  border: none;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-login:hover {
  background: var(--dourado-hover);
  transform: translateY(-3px);
}

/* CONTAINER DA SENHA PARA POSICIONAR O ÍCONE */
.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-container input {
  width: 100%; /* Ocupa tudo */
  padding-right: 35px !important; /* Espaço para o ícone não ficar em cima do texto */
}

#toggleSenha {
  position: absolute;
  right: 10px;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  padding: 5px;
}

#toggleSenha:hover {
  color: var(--dourado);
}

.grid-item.show {
    animation: fadeInSmooth 0.6s forwards;
}

@keyframes fadeInSmooth {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   SEÇÃO DE CONTATO PREMIUM (ESTILO EDITORIAL)
   ============================================================= */
.contact-premium {
  background-color: #121212; /* Grafite sofisticado */
  padding: 120px 0 80px;
}

.subtitle-gold {
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 500;
}

.contact-divider {
  width: 60px;
  height: 2px;
  background-color: var(--dourado);
  margin: 0 auto;
}

/* Lista de especialidades */
.specialties-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.specialties-list .dot {
  width: 4px;
  height: 4px;
  background-color: var(--dourado);
  border-radius: 50%;
  opacity: 0.5;
}

/* Card do Roberto */
.expert-card {
  margin-top: 40px;
}

.roberto-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 5px;
}

.expert-title {
  color: var(--dourado);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.expert-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  opacity: 0.8;
}

.contact-link i {
  color: var(--dourado);
  margin-right: 8px;
}

.contact-link:hover {
  opacity: 1;
  color: var(--dourado);
}

/* Botão de WhatsApp Refinado */
.btn-whatsapp-premium {
  display: inline-block;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  padding: 18px 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

.btn-whatsapp-premium:hover {
  background: var(--dourado);
  color: #000;
  box-shadow: 0 15px 30px rgba(197, 164, 109, 0.2);
}

/* BOX DE REDES SOCIAIS EM QUADRADOS */
.social-minimal {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.social-minimal a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03); /* Fundo quase invisível */
  border: 1px solid rgba(197, 164, 109, 0.2); /* Borda dourada sutil */
  color: var(--dourado);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 8px; /* Quadrado com cantos levemente arredondados */
}

.social-minimal a:hover {
  background: var(--dourado);
  color: #000;
  border-color: var(--dourado);
  transform: translateY(-10px) rotate(5deg); /* Efeito de flutuação dinâmico */
  box-shadow: 0 10px 20px rgba(197, 164, 109, 0.3);
}

/* =============================================================
   BOTÕES DA GALERIA (QUADRADOS E CENTRALIZADOS)
   ============================================================= */
.gallery-action-box {
    display: flex;
    justify-content: center; /* Centraliza no Desktop */
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    width: 100%;
}

.btn-premium-grid {
    width: 260px; /* Mesma largura para ambos */
    height: 55px; /* Mesma altura para simetria */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 2px; /* Visual quadrado/arquitetônico */
    transition: all 0.4s ease;
}

/* ESTILO DOURADO (Portfólio) */
.btn-gold-solid {
    background: var(--dourado);
    color: #000 !important;
    border: 1px solid var(--dourado);
}

.btn-gold-solid:hover {
    background: var(--dourado-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 164, 109, 0.2);
}

/* ESTILO INSTAGRAM (Borda Degradê) */
.btn-insta-border {
    background: #0b0b0b;
    color: #fff !important;
    position: relative;
    border: 1px solid transparent;
    /* Truque para borda em degradê */
    background-image: linear-gradient(#0b0b0b, #0b0b0b), 
                      linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-insta-border i {
    font-size: 18px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-insta-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.15);
}

/* =============================================================
   VERSÃO MOBILE (EMPILHADOS E LARGURA TOTAL)
   ============================================================= */
@media (max-width: 768px) {
    .gallery-action-box {
        flex-direction: column; /* Empilha no celular */
        padding: 0 20px;
    }

    .btn-premium-grid {
        width: 100%; /* Ocupa a largura total no celular */
        max-width: 320px; /* Limita para não ficar exagerado */
    }
}

/* RODAPÉ */
.footer-minimal {
  background-color: #0b0b0b;
  padding: 40px 0;
}

.footer-line {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 164, 109, 0.3), transparent);
  margin: 0 auto 30px;
}

.footer-minimal p {
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* =============================================================
   SEÇÃO SOBRE (REFINAMENTO LUXO)
   ============================================================= */
.about-premium {
  background-color: #121212; /* Grafite suave para separar das outras seções */
  padding: 120px 20px;
  position: relative;
}

/* O Monograma no topo */
.about-monogram i {
  color: var(--dourado);
  font-size: 24px;
  position: relative;
  opacity: 0.8;
}

.about-monogram::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
  margin: 15px auto 0;
}

/* Divisor elegante (Linha com ponto central) */
.signature-line {
  width: 100%;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  margin: 0 auto;
  position: relative;
}

.signature-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--dourado);
  border-radius: 50%;
}

/* Tipografia Escalonada */
.lead-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.lead-text strong {
  color: var(--dourado);
  font-weight: 500;
}

.secondary-text {
  font-size: 1.1rem;
  line-height: 2;
  color: #888;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* Efeito de Scroll Suave para o Texto */
.about-premium p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.about-premium.show p {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   REFINAMENTO DA SEÇÃO SOBRE (COM TEXTO REAL)
   ============================================================= */

/* O Lema em destaque */
.motto-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--dourado);
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

/* Aspas decorativas para o lema */
.motto-text::before, .motto-text::after {
  font-size: 60px;
  opacity: 0.2;
  position: absolute;
}
.motto-text::before { content: "“"; left: 0; top: -20px; }
.motto-text::after { content: "”"; right: 0; bottom: -40px; }

.about-description {
  margin-top: 40px;
  text-align: justify; /* Justificado dá um ar mais sério e documental */
  text-align-last: center; /* Mas mantém a última linha centralizada */
}

.about-description strong {
  color: var(--dourado);
  font-weight: 500;
}

/* Ajuste mobile */
@media (max-width: 768px) {
  .motto-text { font-size: 1.3rem; }
}





/* =============================================================
   HERO FINAL (USANDO A NOVA COMPOSIÇÃO)
   ============================================================= */
.hero-final {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Substitua pelo caminho da sua imagem salva */
    background: url('background.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay sutil para dar profundidade e garantir leitura */
.hero-overlay-blend {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

/* =============================================================
   SUBTÍTULO ESTILO "PILL" (ETIQUETA)
   ============================================================= */
.hero-subtitle {
    display: inline-block; /* Necessário para aplicar padding e fundo */
    background: rgba(197, 164, 109, 0.1); /* Fundo dourado bem transparente */
    border: 1px solid rgba(197, 164, 109, 0.3); /* Borda fina */
    padding: 8px 25px;
    border-radius: 50px; /* Formato arredondado sutil */
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 4px; /* Espaçamento elegante */
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(5px); /* Efeito de vidro atrás da etiqueta */
}

/* =============================================================
   CORREÇÃO DO BOTÃO VER PORTFÓLIO
   ============================================================= */
.btn-outline {
    padding: 16px 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff !important; /* Força a cor branca e remove o azul */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Garantindo que o botão dourado também siga a proporção */
.btn-gold {
    padding: 16px 35px;
    background: var(--dourado);
    color: #000 !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.4s;
    display: inline-block;
    border: 1px solid var(--dourado);
}

.btn-gold:hover {
    background: var(--dourado-hover);
    border-color: var(--dourado-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 164, 109, 0.2);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--dourado), transparent);
    margin-top: 10px;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .hero-final {
        /* Ajustamos para 45% para trazer o lado residencial (cozinha) mais para o centro */
        background-position: 45% center; 
        /* Usamos dvh para evitar problemas com a barra de endereço do navegador no celular */
        height: 100dvh; 
    }

    .hero-subtitle {
        /* Reduzimos o espaçamento das letras para não quebrar em telas pequenas */
        letter-spacing: 4px; 
        font-size: 11px;
        margin-bottom: 15px;
    }

    .hero-text-box h1 {
        /* Tamanho ideal para leitura sem esforço no celular */
        font-size: 1.8rem; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-text-box p {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 10px; /* Evita que o texto encoste nas bordas */
    }

    /* Botões empilhados com largura total ficam mais "App-like" e fáceis de clicar */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px; /* Mantém os botões elegantes e não gigantes */
        margin: 0 auto;
    }

    .btn-gold, .btn-outline {
        width: 100%;
        padding: 15px 20px;
        display: block;
        text-align: center;
    }
}

/* =============================================================
   BOTÃO GOOGLE REVIEWS (TAMANHO IDEAL)
   ============================================================= */
.btn-google-reviews {
    display: inline-flex; /* Tamanho automático de acordo com o texto */
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espaço entre o ícone G e o texto */
    
    padding: 14px 30px; /* Respiro interno elegante */
    border: 1px solid rgba(197, 164, 109, 0.3); /* Borda dourada sutil */
    border-radius: 4px; /* Leve curvatura luxuosa */
    
    color: #888 !important; /* Cor suave para não "gritar" */
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-google-reviews i {
    font-size: 14px;
    color: var(--dourado);
}

.btn-google-reviews:hover {
    color: #fff !important;
    border-color: var(--dourado);
    background: rgba(197, 164, 109, 0.05); /* Fundo dourado quase invisível no hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade: No mobile ele pode ser um pouco maior para facilitar o toque */
@media (max-width: 768px) {
    .btn-google-reviews {
        width: 80%; /* No celular damos um pouco mais de área de clique */
        padding: 16px 20px;
    }
}

/* =============================================================
   MOLDURA DUAL COM FADE DE IMAGENS
   ============================================================= */
.image-wrapper-dual {
    position: relative;
    width: 100%;
    /* Define uma proporção fixa (quadrada) para o container não mudar de tamanho */
    aspect-ratio: 4 / 3; 
    border-radius: 8px;
    background: #000;
    /* Deixamos visível para o selo não ser cortado */
    overflow: visible; 
}

.img-fade {
    /* AMBAS as imagens agora são absolutas e ficam uma em cima da outra */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover garante que a foto preencha o quadrado sem deformar */
    object-fit: cover; 
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: opacity 2s ease-in-out;
    opacity: 0;
    z-index: 1;
}

/* Somente a imagem ativa aparece */
.img-fade.active {
    opacity: 1;
    z-index: 2;
}

/* =============================================================
   SELO PREMIUM V2 (ESTILO MOEDA DE OURO)
   ============================================================= */
.premium-seal {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: sealFloat 4s ease-in-out infinite;
}

.seal-ring {
    width: 100%;
    height: 100%;
    background: conic-gradient(
        #c5a46d, #e0c28a, #c5a46d, #b38f54, #e0c28a, #c5a46d
    ); /* Efeito de brilho metálico real */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.3);
}

.seal-content {
    width: 100%;
    height: 100%;
    background: #0b0b0b; /* Fundo escuro interno para destacar o texto */
    border-radius: 50%;
    border: 2px solid #c5a46d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dourado);
    text-align: center;
}

.seal-content .number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.seal-content .label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.seal-content .footer {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff; /* Branco para contraste final */
}

/* Animação do Selo Flutuando sutilmente */
@keyframes sealFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@media (max-width: 768px) {
    .premium-seal { width: 90px; height: 90px; bottom: -10px; right: -10px; }
    .seal-content .number { font-size: 24px; }
}

/* =============================================================
   CORREÇÃO DEFINITIVA: ALINHAMENTO SENHA (CHROME VS MOZILLA)
   ============================================================= */

/* 1. Reset global para todos os inputs do modal */
.modal-login input {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    /* Linha sutil de fundo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px !important;
    outline: none !important;
    box-shadow: none !important;
    display: block !important;
    transition: border-color 0.3s;
}

/* 2. Efeito de foco (quando clica para digitar) */
.modal-login input:focus {
    border-bottom: 1px solid var(--dourado) !important;
}

/* 3. Ajuste do container da senha (removemos qualquer borda dele) */
.password-container {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important; /* Remove borda do container */
    padding: 0 !important;
    margin: 0 !important;
}

/* 4. Posicionamento do ícone do olho (absoluto à direita) */
#toggleSenha {
    position: absolute !important;
    right: 0 !important;
    /* Ajusta para ficar exatamente acima da linha */
    bottom: 12px !important; 
    cursor: pointer !important;
    color: white !important;
    opacity: 0.5 !important;
    z-index: 10 !important;
    font-size: 14px !important;
}

#toggleSenha:hover {
    opacity: 1 !important;
    color: var(--dourado) !important;
}

/* 5. Fix para o fundo branco do preenchimento automático do Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #111 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* =============================================================
   SUBSTITUTO DE FOTO (AVATAR COM INICIAIS)
   ============================================================= */
.user-avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a1a, #0b0b0b);
    border: 1px solid rgba(197, 164, 109, 0.3); /* Borda dourada sutil */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dourado);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    flex-shrink: 0; /* Impede o círculo de amassar */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

/* Ajuste no header do card para alinhar as iniciais com o texto */
.depo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.processo-step {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(197, 164, 109, 0.1);
}
.processo-step span {
  display: block;
  font-family: 'Playfair Display';
  font-size: 3rem;
  color: rgba(197, 164, 109, 0.2);
  margin-bottom: -20px;
}
.processo-step h3 {
  font-size: 1.2rem;
  color: var(--dourado);
  margin-bottom: 15px;
}
.processo-step p {
  font-size: 0.9rem;
  color: #777;
}