/* ================== RESET / BASE ================== */
* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }
body {
  background-color: #000;            /* fundo escuro */
  color: #f2f2f2;                    /* texto claro */
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
}

/* ================== LAYOUT COMUM ================== */
.section { max-width: 1200px; margin: 24px auto; padding: 0 16px; }
h1, h2, h3 { margin: 0 0 12px; line-height: 1.25; }
h1.titulo-principal { text-align: center; padding: 0 16px; }
h2 {
  font-size: 28px; color: #fff; text-align: center;
  border-bottom: 1px solid #444; padding-bottom: 10px;
}

/* ================== HEADER ================== */
header{
  background:#414141; padding:14px 0; border-bottom:1px solid #2e2e2e;
  position:sticky; top:0; z-index:20;
}
.container{
  width:90%; max-width:1200px; margin:auto;
  display:flex; align-items:center; justify-content:space-between;
}
.logo-area{ display:flex; align-items:center; gap:10px; }
.logo-img{ height:50px; width:auto; border-radius:8px; }
.logo-text{ font-size:1.6rem; color:#fff; margin:0; }
.verificado img{ width:22px; height:22px; }
.menu a{
  color:#efe6e6; text-decoration:none; font-weight:600;
  margin-left:20px; transition:color .2s;
}
.menu a:hover{ color:#052da4; }

@media (max-width:768px){
  header .container{ flex-direction:column; align-items:flex-start; gap:10px; }
  .menu{ margin-top:6px; }
  .menu a{ display:inline-block; margin:6px 12px 0 0; }
}

/* ================== WHATSAPP FLOAT ================== */
.whatsapp-float{
  position:fixed; right:25px; bottom:50px; z-index:100;
  width:60px; height:60px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 8px rgba(0,0,0,.3); transition:transform .2s;
}
.whatsapp-float:hover{ transform:scale(1.1); }
.whatsapp-float img{ width:40px; height:40px; }

/* ================== CARROSSEL (SWIPER) ================== */
.carrossel{ background:#212020; color:#fff; padding:28px 0 36px; text-align:center; }
.carrossel h2{ color:#fff; border:none; margin-bottom:16px; }
.swiper{ width:100%; }
.swiper-slide{
  background:#111; border-radius:12px; overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.35);
}
/* imagens do carrossel de dispositivos */
.swiper-slide img{
  width:100%; height:340px; display:block; object-fit:cover;
}
.swiper-button-prev, .swiper-button-next{ color:#fff; }
.swiper-pagination-bullet{ background:#e5e5e5; opacity:.6; }
.swiper-pagination-bullet-active{ background:#fff; opacity:1; }

@media (max-width:768px){
  .swiper-slide img{ height:260px; }
}

/* ================== SERVIÇOS ================== */
#servicos h2{ margin-top:6px; }
.servicos-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
}
.servico-item{
  background:#1c1c1c; border-radius:12px; padding:16px; text-align:center;
  box-shadow:0 0 15px rgba(0,255,213,.05); transition:transform .2s ease;
}
.servico-item:hover{ transform:translateY(-4px); }
.servico-item img{ width:100%; height:220px; object-fit:cover; border-radius:10px; margin-bottom:12px; }
.servico-item h3{ color:#fff; margin:8px 0 6px; }
.servico-item p{ color:#d7d7d7; font-size:14px; margin:0 8px 14px; }

.botaoagende button{
  width:100%; padding:14px 16px; border:none; border-radius:8px; cursor:pointer;
  background:#000; color:#fff; font-weight:700; font-size:16px;
  transition:transform .15s, background-color .2s;
}
.botaoagende button:hover{ background:#5e5d5d; transform:scale(1.03); }

/* ================== GALERIA (FOTOS) ================== */
.titulo-principal{ color:#fff; border:none; }
.galeria{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:10px;
}
.galeria img{
  width:100%; height:210px; object-fit:cover; border-radius:10px; cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.35); transition:transform .15s;
}
.galeria img:hover{ transform:scale(1.02); }

@media (max-width:1000px){ .galeria{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:700px){ .galeria{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .galeria{ grid-template-columns:1fr; } }

/* ================== ÁREA DE ATENDIMENTO ================== */
.area-atendimento{
  background:#1a1a1a; color:#fff; text-align:center;
  padding:40px 20px; border-top:50px solid #636060;
}
.area-atendimento h2{ color:#fff; border:none; margin-bottom:10px; }
.area-atendimento p{ font-size:18px; margin:6px 0; }

/* ================== FOOTER ================== */
footer{
  background:#000; color:#f7f1f1; text-align:center;
  padding:26px 0; border-top:1px solid #000;
}

/* ================== BOTÃO VOLTAR AO TOPO ================== */
#topBtn{
  display:none; position:fixed; right:90px; bottom:50px; z-index:100;
  width:60px; height:60px; border:none; border-radius:50%;
  background:linear-gradient(135deg,#2008aa,#312ee2); color:#fff;
  font-size:24px; font-weight:bold; cursor:pointer;
  box-shadow:0 4px 8px rgba(20,12,244,.25); transition:all .25s;
}
#topBtn:hover{
  background:linear-gradient(135deg,#25a2f5,#00a3cc);
  transform:translateY(-4px) scale(1.06);
}
@media (max-width:768px){ #topBtn{ right:20px; bottom:82px; } }

/* ================== MODAL (LIGHTBOX) ================== */
.modal{
  display:none; position:fixed; z-index:9999; padding-top:60px;
  inset:0; background-color:rgba(0,0,0,.9);
}
.modal-conteudo{
  margin:auto; display:block; max-width:92%; max-height:82vh; border-radius:10px;
}
.fechar{
  position:absolute; top:18px; right:26px; color:#fff;
  font-size:34px; font-weight:bold; cursor:pointer;
}

/* ================== PÁGINA AGENDAMENTO ================== */
.fundo{
  min-height:100vh; background:#000;
  background-image:url("../img/ChatGPT Image 12 de abr. de 2025, 17_19_32.png");
  background-size:cover; background-position:center; background-repeat:no-repeat;
  display:flex; flex-direction:column;
}
.agendamento{
  background:rgba(0,0,0,.8); max-width:480px; width:90%;
  margin:60px auto; padding:30px 24px; border-radius:14px;
  box-shadow:0 0 18px rgba(255,255,255,.08); color:#fff;
}
.agendamento h2{
  text-align:center; color:#fff; margin-bottom:20px; font-size:1.4rem;
  border-bottom:1px solid #3a3a3a; padding-bottom:10px;
}
.agendamento form{ display:flex; flex-direction:column; gap:12px; }
.agendamento label{ font-weight:bold; font-size:14px; margin-bottom:3px; color:#f5f5f5; }
.agendamento input{
  padding:10px 12px; border:1px solid #555; border-radius:6px; font-size:15px;
  background:#121212; color:#fff; transition:border-color .2s, box-shadow .2s;
}
.agendamento input:focus{
  outline:none; border-color:#00a3cc; box-shadow:0 0 0 2px rgba(0,163,204,.25);
}
.agendamento button{
  background:linear-gradient(135deg,#2008aa,#312ee2); color:#fff; font-weight:bold;
  font-size:16px; padding:12px; border:none; border-radius:8px; cursor:pointer;
  margin-top:10px; transition:transform .2s, background .3s;
}
.agendamento button:hover{ background:linear-gradient(135deg,#25a2f5,#00a3cc); transform:translateY(-2px); }
@media (max-width:600px){
  .agendamento{ margin:40px auto; padding:24px 18px; }
  .agendamento h2{ font-size:1.2rem; }
  .agendamento input{ font-size:14px; }
  .agendamento button{ font-size:15px; }
}

/* ================== VÍDEOS – CARROSSEL (SEM CORTES) ================== */
#swiperVideos .swiper-slide.video-slide{
  background:#111; border:1px solid #2a2a2a; border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,.35);
  overflow:hidden; display:flex; flex-direction:column;
}
/* Moldura 9:16 estilo celular */
#swiperVideos .video-frame{
  width:100%; aspect-ratio:9/16; background:#000;
  display:flex; align-items:center; justify-content:center;
}
/* Vídeo sempre inteiro (sem zoom/corte) */
#swiperVideos .video-frame video{
  width:100% !important; height:100% !important;
  max-width:100% !important; max-height:100% !important;
  object-fit:contain !important; object-position:center center !important;
  background:#000;
}
#swiperVideos .video-caption{
  color:#eaeaea; text-align:center; padding:8px 10px; border-top:1px solid #2a2a2a;
}
#swiperVideos .swiper-button-prev.videos,
#swiperVideos .swiper-button-next.videos{ color:#fff; }
#swiperVideos .swiper-pagination.videos .swiper-pagination-bullet{ background:#e5e5e5; opacity:.6; }
#swiperVideos .swiper-pagination.videos .swiper-pagination-bullet-active{ background:#fff; opacity:1; }
@media (max-width:768px){ #swiperVideos .video-frame{ max-height:75vh; } }
@media (min-width:1024px){ #swiperVideos .video-frame{ max-height:560px; } }
