/* ================================
   CONFIGURAÇÕES GERAIS
================================ */
*{
  box-sizing:border-box;
}

/* FUNDO GERAL DO SITE */
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#0b0b0b; /* cor de fundo geral */
  color:#fff;
}

/* ================================
   TOPO / CAPA (HERO)
================================ */
.hero{
  position:relative;
  text-align:center;
  padding:60px 20px; /* ↑ aumenta/↓ diminui altura do topo */
  background:url('../logo/logo.png') center/cover no-repeat; /* imagem de fundo */
}

/* ESCURECE A IMAGEM DE FUNDO */
.hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7); /* ↓ menos escuro | ↑ mais escuro */
}

.hero *{
  position:relative;
}

/* LOGO PRINCIPAL (TOPO) */
.logo{
  width:120px;      /* 🔥 tamanho da logo */
  margin-bottom:20px;
}

/* ================================
   TÍTULOS
================================ */
.titulo{
  text-align:center;
  color:#c8a24a; /* cor dourada */
}

/* ================================
   CARDS DOS SERVIÇOS
================================ */
.cards{
  display:grid;
  grid-template-columns:1fr 1fr; /* duas colunas no celular */
  gap:14px;
  padding:20px;
}

/* BOTÃO / CARD DO CORTE */
.card{
  position:relative;

  /* 🔥 IMAGEM OCUPANDO O BOTÃO TODO */
  background:url('../logo/logo.png') center/cover no-repeat;

  border:1px solid #c8a24a;
  border-radius:18px;
  padding:30px 10px; /* altura do botão */
  text-align:center;
  cursor:pointer;
  overflow:hidden;
  transition:0.3s;
}

/* ESCURECE A IMAGEM DO BOTÃO */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65); /* ↓ menos escuro | ↑ mais escuro */
}

/* TEXTO SOBRE A IMAGEM */
.card h3,
.card p{
  position:relative;
  z-index:2;
}

.card h3{
  font-size:16px;
}

.card p{
  font-weight:bold;
  color:#c8a24a;
}

/* EFEITO AO PASSAR O DEDO */
.card:hover{
  transform:scale(1.03);
}

/* ================================
   ESCONDER ELEMENTOS
================================ */
.hidden{
  display:none;
}

/* ================================
   DATA / CALENDÁRIO
================================ */
.data-box{
  text-align:center;
  margin:10px;
}

/* ================================
   HORÁRIOS
================================ */
.horarios{
  display:grid;
  grid-template-columns:repeat(4,1fr); /* 4 horários por linha */
  gap:10px;
  padding:15px;
}

/* BOTÃO DE HORÁRIO */
.hora{
  padding:14px;
  border-radius:12px;
  background:#1f1f1f;
  text-align:center;
  font-weight:bold;
  cursor:pointer;
}

/* HORÁRIO OCUPADO */
.ocupado{
  background:#444;
  color:#777;
  pointer-events:none;
}

/* HORÁRIO SELECIONADO */
.selecionado{
  background:#7b1e1e;
}

/* ================================
   INPUTS
================================ */
input{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:none;
  margin-top:8px;
}

/* ================================
   BOTÕES
================================ */

/* BOTÃO PRINCIPAL (CONFIRMAR) */
.btn-principal{
  margin-top:15px;
  padding:14px;
  border-radius:14px;
  border:none;
  background:#7b1e1e; /* cor principal */
  color:#fff;
  font-weight:bold;
  cursor:pointer;
}

/* BOTÃO SECUNDÁRIO */
.btn-secundario{
  padding:10px;
  border-radius:10px;
  border:1px solid #c8a24a;
  background:none;
  color:#c8a24a;
  cursor:pointer;
}

/* BOTÃO VOLTAR */
.btn-voltar{
  background:none;
  border:none;
  color:#c8a24a;
  margin-bottom:10px;
  cursor:pointer;
}

/* LINK DO PAINEL */
.painel-link{
  display:block;
  text-align:center;
  color:#c8a24a;
  margin:25px;
}

/* ================================
   PAINEL ADMIN
================================ */
.admin-body{
  min-height:100vh;
  background:url('../logo/logo.png') center/cover no-repeat;
}

/* CARD CENTRAL DO ADMIN */
.admin-card{
  max-width:520px;
  margin:40px auto;
  background:rgba(0,0,0,.85);
  padding:25px;
  border-radius:16px;
  border:1px solid #c8a24a;
}

/* CABEÇALHO ADMIN */
.admin-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO PEQUENA DO ADMIN */
.logo-sm{
  width:60px; /* tamanho da logo no admin */
}

/* SEÇÕES DO ADMIN */
.admin-section{
  margin-top:20px;
}

/* INPUTS LADO A LADO */
.flex{
  display:flex;
  gap:10px;
}

/* LINHAS DA AGENDA */
.linha{
  display:flex;
  justify-content:space-between;
  padding:10px;
  border-bottom:1px solid #333;
}

/* STATUS */
.livre{
  color:#3cb371;
}

.reservado{
  color:#ff6347;
}

.vip-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.vip-btn a {
  background: #c8a24a;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}


/* ================================
   MOBILE FIX – LOGIN / CADASTRO VIP
================================ */


  /* HERO não empurrar o conteúdo */
  

  /* CARD CENTRAL – FOCO TOTAL */
  .admin-card {
    width: 95%;
    max-width: 360px;
    margin: 0 auto;
    padding: 22px;
  }

  /* LOGO */
  .logo {
    width: 80px;
    margin-bottom: 10px;
  }

  /* TÍTULO */
  .titulo {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* INPUTS GRANDES (APP STYLE) */
  input {
    font-size: 16px;
    padding: 14px;
  }

  /* BOTÕES GRANDES */
  .btn-principal {
    font-size: 16px;
    padding: 14px;
  }

  .btn-secundario {
    font-size: 14px;
    padding: 12px;
  }


/* ================================
   RESET & BASE
================================ */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Segoe UI', Arial, sans-serif;
  background:radial-gradient(circle at top, #151515, #050505);
  color:#fff;
}

/* ================================
   CONTAINER
================================ */
.vip-container{
  max-width:1100px;
  margin:40px auto;
  padding:20px;
}

/* ================================
   TÍTULOS
================================ */
.vip-title{
  text-align:center;
  font-size:28px;
  color:#d6b15a;
  margin-bottom:35px;
  letter-spacing:1px;
}

/* ================================
   STATUS DO PLANO (VIP CARD)
================================ */
.vip-status{
  background:linear-gradient(145deg,#111,#1c1c1c);
  border:1px solid #d6b15a;
  border-radius:18px;
  padding:22px;
  margin-bottom:40px;
  box-shadow:0 0 30px rgba(214,177,90,.15);
}

.vip-status p{
  margin:10px 0;
  font-size:15px;
}

.vip-status strong{
  color:#d6b15a;
}

/* ================================
   PLANOS VIP
================================ */
.planos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

/* CARD VIP */
.plano-card{
  position:relative;
  background:url('logo.png') center/cover no-repeat;
  border:2px solid #d6b15a;
  border-radius:22px;
  padding:28px 18px;
  text-align:center;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.7);
  transition:.3s;
}

/* OVERLAY */
.plano-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.9)
  );
  pointer-events:none;
}

.plano-card *{
  position:relative;
  z-index:2;
}

.plano-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 50px rgba(214,177,90,.25);
}

.plano-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.plano-card p{
  margin:6px 0;
  color:#d6b15a;
  font-weight:600;
}

/* ================================
   BOTÕES VIP
================================ */
.btn-principal{
  margin-top:18px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,#b21f1f,#7b1e1e);
  color:#fff;
  font-weight:bold;
  letter-spacing:.5px;
  cursor:pointer;
  transition:.3s;
}

.btn-principal:hover{
  background:linear-gradient(135deg,#d62b2b,#8f2424);
}

.btn-secundario{
  margin-top:10px;
  width:100%;
  padding:12px;
  border-radius:30px;
  border:1px solid #d6b15a;
  background:rgba(0,0,0,.4);
  color:#d6b15a;
  cursor:pointer;
  transition:.3s;
}

.btn-secundario:hover{
  background:#d6b15a;
  color:#000;
}

/* ================================
   AGENDAMENTO VIP
================================ */
.agendamento{
  margin-top:50px;
  background:linear-gradient(145deg,#111,#1b1b1b);
  border:1px solid #d6b15a;
  border-radius:22px;
  padding:25px;
  box-shadow:0 0 25px rgba(214,177,90,.15);
}

.agendamento h3{
  text-align:center;
  margin-bottom:18px;
  color:#d6b15a;
}

input[type="date"]{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:none;
  background:#0e0e0e;
  color:#fff;
  margin-bottom:20px;
}

.horarios{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.hora{
  padding:14px;
  background:#141414;
  border-radius:14px;
  text-align:center;
  cursor:pointer;
  border:1px solid #333;
  transition:.25s;
}

.hora:hover{
  background:#7b1e1e;
  border-color:#d6b15a;
}

/* ================================
   MOBILE VIP
================================ */
@media(max-width:600px){
  .vip-title{
    font-size:22px;
  }

  .horarios{
    grid-template-columns:repeat(3,1fr);
  }
}
/* =================================================
   AJUSTE FINO – SOMENTE FUNDO E LOGO (MOBILE)
   NÃO ALTERA NADA DO LAYOUT EXISTENTE
================================================= */

/* Ajuste do fundo geral no celular */
@media (max-width: 600px) {
  body {
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
  }
}

/* Ajuste da LOGO (imagem do card) no celular */
@media (max-width: 600px) {
  .plano-card {
    background-size: contain;   /* 🔥 evita zoom e corte */
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* Mantém o overlay funcionando corretamente */
@media (max-width: 600px) {
  .plano-card::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.85),
      rgba(0,0,0,.95)
    );
  }
}

/* =====================================================
   FIX DEFINITIVO HERO VIP (SOBRESCREVE CSS ANTIGO)
   NÃO REMOVE NADA EXISTENTE
===================================================== */

.hero{
  position: relative !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

/* overlay continua normal */
.hero .overlay{
  position: absolute !important;
  inset: 0;
}

/* tudo acima do overlay */
.hero > *{
  position: relative !important;
  z-index: 2 !important;
}

/* LOGO – REMOVE QUALQUER FLOAT / ABSOLUTE ANTIGO */
.hero .logo{
  position: relative !important;
  float: none !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;

  display: block !important;
  width: 100% !important;
  max-width: 120px !important;
  height: auto !important;

  margin: 0 auto 12px auto !important;
}

/* BOTÃO VOLTAR – NÃO GRUDA NA LOGO */
.hero .btn-voltar{
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;

  margin-top: 14px !important;
  align-self: center !important;
}

/* MOBILE */
@media (max-width:600px){
  .hero{
    padding: 36px 14px !important;
  }

  .hero .logo{
    max-width: 100px !important;
  }
}
/* 🔥 FIXAR HORÁRIO SELECIONADO */
.hora.selecionado{
  background:#7b1e1e;
  color:#fff;
  border:1px solid #d6b15a;
}

/* GARANTE QUE HOVER NÃO SOBRESCREVA */
.hora.selecionado:hover{
  background:#7b1e1e;
}
.hora.ocupado {
  background: #333;
  color: #999;
  pointer-events: none;
}
.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.agenda-item.agendado {
  background: #2c2c2c;
  border-left: 4px solid #f0ad4e;
}

.agenda-item.atendido {
  background: #1e3b2f;
  border-left: 4px solid #28a745;
  opacity: 0.7;
}

.agenda-item.cancelado {
  background: #3b1e1e;
  border-left: 4px solid #dc3545;
  opacity: 0.6;
}

.agenda-item button {
  margin-left: 5px;
}

.btn-sair {
  background: transparent;
  border: 1px solid #cfa85f;
  color: #cfa85f;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-sair:hover {
  background: #cfa85f;
  color: #000;
}

.vip-item button {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-weight: bold;
  cursor: pointer;
  margin-top: 6px;
}

.vip-item button:hover {
  background: #d4af37;
  color: #000;
}

.vip-item .btn-secundario {
  border-color: #999;
  color: #999;
}

.vip-item .btn-secundario:hover {
  background: #999;
  color: #000;
}

/* ===============================
   REDES SOCIAIS - TOPO DIREITO
================================ */
#redes-sociais-topo {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 9999;
}

/* BOTÃO BASE */
#redes-sociais-topo .rede {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 3px 8px rgba(0,0,0,.35);
  transition: transform .2s, opacity .2s;
  opacity: 0.9;
}

/* HOVER */
#redes-sociais-topo .rede:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* CORES */
.facebook { background: #1877f2; }
.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.tiktok { background: #000; }
.kwai { background: #ff6a00; }
.youtube { background: #ff0000; }

/* MOBILE (um pouco menores) */
@media (max-width: 600px) {
  #redes-sociais-topo {
    top: 10px;
    right: 10px;
  }

  #redes-sociais-topo .rede {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

.vip-btn {
  margin-bottom: 60px; /* espaço abaixo do botão VIP */
}

#redes-sociais {
  display: flex;
  justify-content: center;
  gap: 12px;           /* espaço entre os ícones */
}

#redes-sociais a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4af37; /* dourado */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

#redes-sociais a:hover {
  transform: scale(1.1);
  background: #fff;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.logo {
  max-width: 160px;
  width: 100%;
  height: auto;
}

/* ===============================
   VÍDEO YOUTUBE RESPONSIVO
================================ */
.video-section {
  width: 100%;
  padding: 30px 15px;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .video-container {
    max-width: 100%;
  }

}



/* ===============================
   VIP ATIVOS – CARDS ORGANIZADOS
================================ */

/* Lista de VIPs ativos */
#listaVipAtivos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* Card individual */
.vip-item.ativo {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid #c8a24a;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover (desktop) */
.vip-item.ativo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,.75);
}

/* Textos */
.vip-item.ativo p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Destaques */
.vip-item.ativo strong {
  color: #c8a24a;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  #listaVipAtivos {
    grid-template-columns: 1fr;
  }

  .vip-item.ativo {
    padding: 16px;
  }
}


/* ================================
   CONFIGURAÇÕES GERAIS
================================ */
*{
  box-sizing:border-box;
}

/* FUNDO GERAL DO SITE */
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#0b0b0b; /* cor de fundo geral */
  color:#fff;
}

/* ================================
   TOPO / CAPA (HERO)
================================ */
.hero{
  position:relative;
  text-align:center;
  padding:60px 20px; /* ↑ aumenta/↓ diminui altura do topo */
  background:url('../logo/logo.png') center/cover no-repeat; /* imagem de fundo */
}

/* ESCURECE A IMAGEM DE FUNDO */
.hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7); /* ↓ menos escuro | ↑ mais escuro */
}

.hero *{
  position:relative;
}

/* LOGO PRINCIPAL (TOPO) */
.logo{
  width:120px;      /* 🔥 tamanho da logo */
  margin-bottom:20px;
}

/* ================================
   TÍTULOS
================================ */
.titulo{
  text-align:center;
  color:#c8a24a; /* cor dourada */
}

/* ================================
   CARDS DOS SERVIÇOS
================================ */
.cards{
  display:grid;
  grid-template-columns:1fr 1fr; /* duas colunas no celular */
  gap:14px;
  padding:20px;
}

/* BOTÃO / CARD DO CORTE */
.card{
  position:relative;

  /* 🔥 IMAGEM OCUPANDO O BOTÃO TODO */
  background:url('../logo/logo.png') center/cover no-repeat;

  border:1px solid #c8a24a;
  border-radius:18px;
  padding:30px 10px; /* altura do botão */
  text-align:center;
  cursor:pointer;
  overflow:hidden;
  transition:0.3s;
}

/* ESCURECE A IMAGEM DO BOTÃO */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65); /* ↓ menos escuro | ↑ mais escuro */
}

/* TEXTO SOBRE A IMAGEM */
.card h3,
.card p{
  position:relative;
  z-index:2;
}

.card h3{
  font-size:16px;
}

.card p{
  font-weight:bold;
  color:#c8a24a;
}

/* EFEITO AO PASSAR O DEDO */
.card:hover{
  transform:scale(1.03);
}

/* ================================
   ESCONDER ELEMENTOS
================================ */
.hidden{
  display:none;
}

/* ================================
   DATA / CALENDÁRIO
================================ */
.data-box{
  text-align:center;
  margin:10px;
}

/* ================================
   HORÁRIOS
================================ */
.horarios{
  display:grid;
  grid-template-columns:repeat(4,1fr); /* 4 horários por linha */
  gap:10px;
  padding:15px;
}

/* BOTÃO DE HORÁRIO */
.hora{
  padding:14px;
  border-radius:12px;
  background:#1f1f1f;
  text-align:center;
  font-weight:bold;
  cursor:pointer;
}

/* HORÁRIO OCUPADO */
.ocupado{
  background:#444;
  color:#777;
  pointer-events:none;
}

/* HORÁRIO SELECIONADO */
.selecionado{
  background:#7b1e1e;
}

/* ================================
   INPUTS
================================ */
input{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:none;
  margin-top:8px;
}

/* ================================
   BOTÕES
================================ */

/* BOTÃO PRINCIPAL (CONFIRMAR) */
.btn-principal{
  margin-top:15px;
  padding:14px;
  border-radius:14px;
  border:none;
  background:#7b1e1e; /* cor principal */
  color:#fff;
  font-weight:bold;
  cursor:pointer;
}

/* BOTÃO SECUNDÁRIO */
.btn-secundario{
  padding:10px;
  border-radius:10px;
  border:1px solid #c8a24a;
  background:none;
  color:#c8a24a;
  cursor:pointer;
}

/* BOTÃO VOLTAR */
.btn-voltar{
  background:none;
  border:none;
  color:#c8a24a;
  margin-bottom:10px;
  cursor:pointer;
}

/* LINK DO PAINEL */
.painel-link{
  display:block;
  text-align:center;
  color:#c8a24a;
  margin:25px;
}

/* ================================
   PAINEL ADMIN
================================ */
.admin-body{
  min-height:100vh;
  background:url('../logo/logo.png') center/cover no-repeat;
}

/* CARD CENTRAL DO ADMIN */
.admin-card{
  max-width:520px;
  margin:40px auto;
  background:rgba(0,0,0,.85);
  padding:25px;
  border-radius:16px;
  border:1px solid #c8a24a;
}

/* CABEÇALHO ADMIN */
.admin-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO PEQUENA DO ADMIN */
.logo-sm{
  width:60px; /* tamanho da logo no admin */
}

/* SEÇÕES DO ADMIN */
.admin-section{
  margin-top:20px;
}

/* INPUTS LADO A LADO */
.flex{
  display:flex;
  gap:10px;
}

/* LINHAS DA AGENDA */
.linha{
  display:flex;
  justify-content:space-between;
  padding:10px;
  border-bottom:1px solid #333;
}

/* STATUS */
.livre{
  color:#3cb371;
}

.reservado{
  color:#ff6347;
}

.vip-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.vip-btn a {
  background: #c8a24a;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}


/* ================================
   MOBILE FIX – LOGIN / CADASTRO VIP
================================ */


  /* HERO não empurrar o conteúdo */
  

  /* CARD CENTRAL – FOCO TOTAL */
  .admin-card {
    width: 95%;
    max-width: 360px;
    margin: 0 auto;
    padding: 22px;
  }

  /* LOGO */
  .logo {
    width: 80px;
    margin-bottom: 10px;
  }

  /* TÍTULO */
  .titulo {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* INPUTS GRANDES (APP STYLE) */
  input {
    font-size: 16px;
    padding: 14px;
  }

  /* BOTÕES GRANDES */
  .btn-principal {
    font-size: 16px;
    padding: 14px;
  }

  .btn-secundario {
    font-size: 14px;
    padding: 12px;
  }


/* ================================
   RESET & BASE
================================ */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Segoe UI', Arial, sans-serif;
  background:radial-gradient(circle at top, #151515, #050505);
  color:#fff;
}

/* ================================
   CONTAINER
================================ */
.vip-container{
  max-width:1100px;
  margin:40px auto;
  padding:20px;
}

/* ================================
   TÍTULOS
================================ */
.vip-title{
  text-align:center;
  font-size:28px;
  color:#d6b15a;
  margin-bottom:35px;
  letter-spacing:1px;
}

/* ================================
   STATUS DO PLANO (VIP CARD)
================================ */
.vip-status{
  background:linear-gradient(145deg,#111,#1c1c1c);
  border:1px solid #d6b15a;
  border-radius:18px;
  padding:22px;
  margin-bottom:40px;
  box-shadow:0 0 30px rgba(214,177,90,.15);
}

.vip-status p{
  margin:10px 0;
  font-size:15px;
}

.vip-status strong{
  color:#d6b15a;
}

/* ================================
   PLANOS VIP
================================ */
.planos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

/* CARD VIP */
.plano-card{
  position:relative;
  background:url('logo.png') center/cover no-repeat;
  border:2px solid #d6b15a;
  border-radius:22px;
  padding:28px 18px;
  text-align:center;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.7);
  transition:.3s;
}

/* OVERLAY */
.plano-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.9)
  );
  pointer-events:none;
}

.plano-card *{
  position:relative;
  z-index:2;
}

.plano-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 50px rgba(214,177,90,.25);
}

.plano-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.plano-card p{
  margin:6px 0;
  color:#d6b15a;
  font-weight:600;
}

/* ================================
   BOTÕES VIP
================================ */
.btn-principal{
  margin-top:18px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,#b21f1f,#7b1e1e);
  color:#fff;
  font-weight:bold;
  letter-spacing:.5px;
  cursor:pointer;
  transition:.3s;
}

.btn-principal:hover{
  background:linear-gradient(135deg,#d62b2b,#8f2424);
}

.btn-secundario{
  margin-top:10px;
  width:100%;
  padding:12px;
  border-radius:30px;
  border:1px solid #d6b15a;
  background:rgba(0,0,0,.4);
  color:#d6b15a;
  cursor:pointer;
  transition:.3s;
}

.btn-secundario:hover{
  background:#d6b15a;
  color:#000;
}

/* ================================
   AGENDAMENTO VIP
================================ */
.agendamento{
  margin-top:50px;
  background:linear-gradient(145deg,#111,#1b1b1b);
  border:1px solid #d6b15a;
  border-radius:22px;
  padding:25px;
  box-shadow:0 0 25px rgba(214,177,90,.15);
}

.agendamento h3{
  text-align:center;
  margin-bottom:18px;
  color:#d6b15a;
}

input[type="date"]{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:none;
  background:#0e0e0e;
  color:#fff;
  margin-bottom:20px;
}

.horarios{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.hora{
  padding:14px;
  background:#141414;
  border-radius:14px;
  text-align:center;
  cursor:pointer;
  border:1px solid #333;
  transition:.25s;
}

.hora:hover{
  background:#7b1e1e;
  border-color:#d6b15a;
}

/* ================================
   MOBILE VIP
================================ */
@media(max-width:600px){
  .vip-title{
    font-size:22px;
  }

  .horarios{
    grid-template-columns:repeat(3,1fr);
  }
}
/* =================================================
   AJUSTE FINO – SOMENTE FUNDO E LOGO (MOBILE)
   NÃO ALTERA NADA DO LAYOUT EXISTENTE
================================================= */

/* Ajuste do fundo geral no celular */
@media (max-width: 600px) {
  body {
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
  }
}

/* Ajuste da LOGO (imagem do card) no celular */
@media (max-width: 600px) {
  .plano-card {
    background-size: contain;   /* 🔥 evita zoom e corte */
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* Mantém o overlay funcionando corretamente */
@media (max-width: 600px) {
  .plano-card::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.85),
      rgba(0,0,0,.95)
    );
  }
}

/* =====================================================
   FIX DEFINITIVO HERO VIP (SOBRESCREVE CSS ANTIGO)
   NÃO REMOVE NADA EXISTENTE
===================================================== */

.hero{
  position: relative !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

/* overlay continua normal */
.hero .overlay{
  position: absolute !important;
  inset: 0;
}

/* tudo acima do overlay */
.hero > *{
  position: relative !important;
  z-index: 2 !important;
}

/* LOGO – REMOVE QUALQUER FLOAT / ABSOLUTE ANTIGO */
.hero .logo{
  position: relative !important;
  float: none !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;

  display: block !important;
  width: 100% !important;
  max-width: 120px !important;
  height: auto !important;

  margin: 0 auto 12px auto !important;
}

/* BOTÃO VOLTAR – NÃO GRUDA NA LOGO */
.hero .btn-voltar{
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;

  margin-top: 14px !important;
  align-self: center !important;
}

/* MOBILE */
@media (max-width:600px){
  .hero{
    padding: 36px 14px !important;
  }

  .hero .logo{
    max-width: 100px !important;
  }
}
/* 🔥 FIXAR HORÁRIO SELECIONADO */
.hora.selecionado{
  background:#7b1e1e;
  color:#fff;
  border:1px solid #d6b15a;
}

/* GARANTE QUE HOVER NÃO SOBRESCREVA */
.hora.selecionado:hover{
  background:#7b1e1e;
}
.hora.ocupado {
  background: #333;
  color: #999;
  pointer-events: none;
}
.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.agenda-item.agendado {
  background: #2c2c2c;
  border-left: 4px solid #f0ad4e;
}

.agenda-item.atendido {
  background: #1e3b2f;
  border-left: 4px solid #28a745;
  opacity: 0.7;
}

.agenda-item.cancelado {
  background: #3b1e1e;
  border-left: 4px solid #dc3545;
  opacity: 0.6;
}

.agenda-item button {
  margin-left: 5px;
}

.btn-sair {
  background: transparent;
  border: 1px solid #cfa85f;
  color: #cfa85f;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-sair:hover {
  background: #cfa85f;
  color: #000;
}

.vip-item button {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-weight: bold;
  cursor: pointer;
  margin-top: 6px;
}

.vip-item button:hover {
  background: #d4af37;
  color: #000;
}

.vip-item .btn-secundario {
  border-color: #999;
  color: #999;
}

.vip-item .btn-secundario:hover {
  background: #999;
  color: #000;
}

/* ===============================
   REDES SOCIAIS - TOPO DIREITO
================================ */
#redes-sociais-topo {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 9999;
}

/* BOTÃO BASE */
#redes-sociais-topo .rede {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 3px 8px rgba(0,0,0,.35);
  transition: transform .2s, opacity .2s;
  opacity: 0.9;
}

/* HOVER */
#redes-sociais-topo .rede:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* CORES */
.facebook { background: #1877f2; }
.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.tiktok { background: #000; }
.kwai { background: #ff6a00; }
.youtube { background: #ff0000; }

/* MOBILE (um pouco menores) */
@media (max-width: 600px) {
  #redes-sociais-topo {
    top: 10px;
    right: 10px;
  }

  #redes-sociais-topo .rede {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

.vip-btn {
  margin-bottom: 60px; /* espaço abaixo do botão VIP */
}

#redes-sociais {
  display: flex;
  justify-content: center;
  gap: 12px;           /* espaço entre os ícones */
}

#redes-sociais a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4af37; /* dourado */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

#redes-sociais a:hover {
  transform: scale(1.1);
  background: #fff;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.logo {
  max-width: 160px;
  width: 100%;
  height: auto;
}

/* ===============================
   VÍDEO YOUTUBE RESPONSIVO
================================ */
.video-section {
  width: 100%;
  padding: 30px 15px;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .video-container {
    max-width: 100%;
  }

}



/* ===============================
   VIP ATIVOS – CARDS ORGANIZADOS
================================ */

/* Lista de VIPs ativos */
#listaVipAtivos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* Card individual */
.vip-item.ativo {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid #c8a24a;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover (desktop) */
.vip-item.ativo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,.75);
}

/* Textos */
.vip-item.ativo p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Destaques */
.vip-item.ativo strong {
  color: #c8a24a;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  #listaVipAtivos {
    grid-template-columns: 1fr;
  }

  .vip-item.ativo {
    padding: 16px;
  }
}


/* ===============================
   FINANCEIRO - VISUAL
================================ */

/* ===============================
   FINANCEIRO – VISUAL PREMIUM
================================ */

.financeiro-body {
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.financeiro-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.financeiro-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56,189,248,.3);
}

/* CARDS */
.financeiro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
}

.financeiro-card {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, #020617, #020617);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.financeiro-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .12;
  background: linear-gradient(120deg, transparent, #fff, transparent);
}

.financeiro-card span {
  font-size: 14px;
  opacity: .85;
}

.financeiro-card strong {
  font-size: 28px;
}

/* CORES */
.card-receber strong { color: #facc15; }
.card-recebido strong { color: #00e5a8; }
.card-saida strong { color: #ff4d4d; }
.card-saldo strong { color: #38bdf8; }

/* GRÁFICO */
.financeiro-grafico {
  margin-top: 50px;
  padding: 30px;
  background: #020617;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.financeiro-grafico h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #38bdf8;
}

/* MENU */
.financeiro-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-financeiro {
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: .3s;
}

.btn-financeiro.green {
  background: linear-gradient(135deg,#00e5a8,#00b894);
}

.btn-financeiro.red {
  background: linear-gradient(135deg,#ff7675,#d63031);
}

.btn-financeiro.blue {
  background: linear-gradient(135deg,#38bdf8,#2563eb);
}

.btn-financeiro:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}
/* ===============================
   RESPONSIVIDADE – MOBILE / TABLET
================================ */

/* 📱 CELULAR */
@media (max-width: 600px) {

  .financeiro-container {
    margin: 20px 10px;
    padding: 10px;
  }

  .financeiro-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .financeiro-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .financeiro-card {
    padding: 20px;
    border-radius: 14px;
  }

  .financeiro-card span {
    font-size: 13px;
  }

  .financeiro-card strong {
    font-size: 22px;
  }

  .financeiro-grafico {
    padding: 15px;
    margin-top: 30px;
  }

  .financeiro-grafico h2 {
    font-size: 18px;
  }

  .financeiro-menu {
    gap: 12px;
  }

  .btn-financeiro {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
  }
}

/* 📱📲 TABLET */
@media (min-width: 601px) and (max-width: 1024px) {

  .financeiro-container {
    margin: 30px 20px;
    padding: 20px;
  }

  .financeiro-title {
    font-size: 28px;
  }

  .financeiro-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .financeiro-card strong {
    font-size: 24px;
  }

  .financeiro-grafico {
    padding: 25px;
  }

  .btn-financeiro {
    padding: 14px 22px;
    font-size: 15px;
  }
}

/* 🖥 DESKTOP GRANDE */
@media (min-width: 1400px) {

  .financeiro-container {
    max-width: 1300px;
  }

  .financeiro-title {
    font-size: 38px;
  }
}
/* ===============================
   ENTRADAS & DESPESAS – PREMIUM
================================ */

.financeiro-body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  min-height: 100vh;
}

/* CONTAINER */
.financeiro-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* TÍTULO */
.financeiro-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #38bdf8;
  text-shadow: 0 0 15px rgba(56,189,248,.3);
}

/* CARD PRINCIPAL */
.financeiro-box {
  background: #020617;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  overflow-x: auto;
}

/* ===============================
   TABELA
================================ */

.financeiro-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.financeiro-table thead {
  background: #020617;
}

.financeiro-table th {
  padding: 14px;
  text-align: left;
  color: #38bdf8;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.financeiro-table td {
  padding: 14px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: #e5e7eb;
}

/* ZEBRA */
.financeiro-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,.02);
}

/* HOVER */
.financeiro-table tbody tr:hover {
  background: rgba(56,189,248,.08);
}

/* VALORES */
.valor-positivo {
  color: #00e5a8;
  font-weight: bold;
}

.valor-negativo {
  color: #ff4d4d;
  font-weight: bold;
}

/* ===============================
   BOTÕES
================================ */

.btn-acao {
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  transition: .3s;
}

.btn-acao.green {
  background: linear-gradient(135deg,#00e5a8,#00b894);
  color: #000;
}

.btn-acao.red {
  background: linear-gradient(135deg,#ff7675,#d63031);
  color: #fff;
}

.btn-acao.blue {
  background: linear-gradient(135deg,#38bdf8,#2563eb);
  color: #000;
}

.btn-acao:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ===============================
   RESPONSIVO – MOBILE
================================ */

@media (max-width: 768px) {

  .financeiro-container {
    margin: 20px 10px;
    padding: 10px;
  }

  .financeiro-title {
    font-size: 24px;
  }

  .financeiro-box {
    padding: 15px;
  }

  .financeiro-table {
    min-width: 600px;
  }

  .financeiro-table th,
  .financeiro-table td {
    padding: 10px;
    font-size: 13px;
  }

  .btn-acao {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* ===============================
   TABLET
================================ */

@media (min-width: 769px) and (max-width: 1024px) {

  .financeiro-container {
    margin: 30px 20px;
  }

  .financeiro-title {
    font-size: 28px;
  }

  .financeiro-table {
    min-width: 650px;
  }
}
/* ======================================================
   ENTRADAS / SAÍDAS – VISUAL MODERNO
====================================================== */

.finance-container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

/* TÍTULO */
.finance-container h1,
.finance-container h2 {
  text-align: center;
  color: #38bdf8;
  margin-bottom: 25px;
}

/* ===============================
   FORMULÁRIO
================================ */
.finance-form {
  background: linear-gradient(135deg,#020617,#020617);
  border: 1px solid #1e3a8a;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,.7);
  margin-bottom: 35px;
}

.finance-form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 15px;
}

.finance-form input,
.finance-form select {
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #1e3a8a;
  background: #020617;
  color: #fff;
  font-size: 15px;
}

.finance-form input::placeholder {
  color: #94a3b8;
}

.finance-form button {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(135deg,#00e5a8,#00b894);
  color: #000;
  transition: .3s;
}

.finance-form button:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* ===============================
   TABELA
================================ */
.finance-table {
  width: 100%;
  border-collapse: collapse;
  background: #020617;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.finance-table thead {
  background: #020617;
}

.finance-table th {
  padding: 16px;
  color: #38bdf8;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #1e3a8a;
}

.finance-table td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid #020617;
}

.finance-table tr:hover {
  background: #020617;
}

/* ===============================
   STATUS
================================ */
.status-pago {
  color: #00e5a8;
  font-weight: bold;
}

.status-pendente {
  color: #facc15;
  font-weight: bold;
}

/* ===============================
   BOTÕES
================================ */
.finance-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-pagar {
  background: #00e5a8;
  color: #000;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

.btn-remover {
  background: #ff4d4d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

/* ===============================
   BOTÃO VOLTAR
================================ */
.btn-voltar {
  display: inline-block;
  margin-bottom: 20px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
}

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

  .finance-table thead {
    display: none;
  }

  .finance-table tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 14px;
    border: 1px solid #1e3a8a;
    padding: 10px;
  }

  .finance-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: none;
  }

  .finance-table td::before {
    content: attr(data-label);
    color: #94a3b8;
    font-size: 13px;
  }

  .finance-actions {
    justify-content: center;
  }
}
/* ===============================
   SEÇÃO SOBRE
=============================== */

.sobre {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
  color: #fff;
}

.sobre .container {
  max-width: 1100px;
  margin: auto;
}

.sobre .titulo {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.sobre .descricao {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ===============================
   CARDS DE VANTAGENS
=============================== */

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

.card-vantagem {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.card-vantagem i {
  font-size: 40px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-vantagem h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card-vantagem p {
  font-size: 15px;
  color: #cbd5e1;
}

/* EFEITO HOVER */
.card-vantagem:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(239,68,68,0.2));
  border: 1px solid rgba(255,255,255,0.2);
}
/* ===============================
   SEÇÃO CONTATO
=============================== */

.contato {
  padding: 80px 20px;
  background: #0f172a;
  color: #fff;
  text-align: center;
}

.contato .container {
  max-width: 1100px;
  margin: auto;
}

.contato .titulo {
  font-size: 32px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.contato .descricao {
  color: #cbd5e1;
  margin-bottom: 50px;
  font-size: 18px;
}

/* ===============================
   BOX CONTATO
=============================== */

.contato-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===============================
   INFORMAÇÕES
=============================== */

.info-contato {
  text-align: left;
}

.info-contato .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.info-contato i {
  font-size: 20px;
  margin-right: 15px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   FORMULÁRIO
=============================== */

.form-contato {
  display: flex;
  flex-direction: column;
}

.form-contato input,
.form-contato textarea {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1e293b;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border: 1px solid #2563eb;
}

.form-contato textarea {
  resize: none;
  height: 120px;
}

.form-contato button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  color: #fff;
  transition: 0.3s;
}

.form-contato button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVO
=============================== */

@media (max-width: 768px) {
  .contato-box {
    grid-template-columns: 1fr;
  }

  .info-contato {
    text-align: center;
  }

  .info-contato .item {
    justify-content: center;
  }
}
