/* ================= VARIÁVEIS ================= */
:root {
  --azul-escuro: #050A30;
  --azul-profundo: #0A1AFF;
  --dourado: #C5A46D;
  --dourado-claro: #E5C98B;
  --cinza-claro: #f5f5f5;
}

/* ================= RESET ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
}

section {
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid #e0e0e0;
}

h2 {
  font-size: 32px;
  color: var(--azul-escuro);
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  display: block;
  margin: 12px auto;
}

/* ================= HEADER ================= */
header {
  background: rgba(5, 10, 48, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo {
  width: 220px;
  filter: drop-shadow(0 0 12px rgba(197,164,109,0.5));
  transition: 0.3s;
}

.logo:hover {
  filter: drop-shadow(0 0 25px rgba(197,164,109,1));
  transform: scale(1.05);
}

.nome-empresa {
  color: white;
  font-weight: bold;
}

.logo-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: brilho 3s infinite;
}

@keyframes brilho {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--dourado-claro);
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* BOTÃO TOPO */
.btn-topo {
  background: var(--dourado);
  color: black;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}
/* ================= VIDEO DESTAQUE ================= */

.video-destaque {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-destaque video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.overlay-video {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
  align-items: center;

  text-align: center;
  color: white;

 padding: 20px 20px 90px 20px;
}

.overlay-video h2 {
  color: white;
  font-size: 42px;
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.btn-video {
  background: linear-gradient(135deg, #C5A46D, #E5C98B);
  color: #050A30;

  padding: 14px 30px;
  border-radius: 35px;

  text-decoration: none;
  font-weight: bold;
  font-size: 16px;

  transition: 0.3s;
}

.btn-video:hover {
  transform: scale(1.05);
}
/* ================= SHOWROOM ================= */
.showroom {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  position: relative;
  overflow: hidden;
}

.showroom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1800px;
  height: 1800px;
  background: url("img/logo.png") no-repeat center;
  background-size: contain;
  opacity: 0.02;
  z-index: 0;
}

.grid,
.titulo-showroom {
  position: relative;
  z-index: 2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ================= CARDS ================= */
.card {
  position: relative;
  height: 340px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
}

.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
  display: none;
  z-index: 2;
  transition: all 0.5s ease;
}

.card img:first-child {
  display: block;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(-6px);
  z-index: 1;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.legenda-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  z-index: 10;
}

/* ================= BOTÕES ================= */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--dourado);
  color: black;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover {
  background: var(--dourado-claro);
}
/* ================= VIDEO MODAL ================= */

.video-item {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  cursor: pointer;
}

.video-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-item:hover .play-video {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-item p {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
}

/* MODAL */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-modal video {
  width: 90%;
  max-width: 1000px;
  border-radius: 18px;
}

.video-modal .fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}
/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-img {
  max-width: 90%;
  max-height: 75vh;
  border-radius: 18px;
}

.legenda {
  color: white;
  font-size: 22px;
  margin-top: 20px;
}

.fechar {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

/* ================= SOBRE + SERVIÇOS ================= */
.sobre-servicos {
  background: #0f172a;
  padding: 80px 20px;
  color: white;
}

.sobre-servicos .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  max-width: 1400px;
  margin: auto;
}

.sobre-box,
.servicos-box {
  flex: 1;
  text-align: left;
}

.sobre-box h2,
.servicos-box h2 {
  color: var(--dourado-claro);
  margin-bottom: 20px;
}

.sobre-box p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.servicos-box ul {
  list-style: none;
  padding: 0;
}

.servicos-box li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.servicos-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--dourado-claro);
}

/* LOGO CENTRAL */
.logo-centro {
  flex: 0.8;
  text-align: center;
}

.logo-centro img {
  width: 170px;
  filter: drop-shadow(0 0 18px rgba(197,164,109,0.35));
}

.logo-centro p {
  margin-top: 12px;
  color: var(--dourado-claro);
  font-weight: bold;
  font-size: 18px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-servicos .container {
    flex-direction: column;
    gap: 40px;
  }

  .sobre-box,
  .servicos-box {
    text-align: center;
  }

  .servicos-box li {
    padding-left: 0;
  }

  .servicos-box li::before {
    display: none;
  }

  .logo-centro img {
    width: 130px;
  }
}
/* ================= LINHAS ================= */

.linhas {
  background: #ffffff;
  padding: 80px 20px;
}

.subtitulo {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.linhas-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.linha-box {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(197,164,109,0.25);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.linha-box h3 {
  color: #050A30;
  margin-bottom: 18px;
}

.linha-box ul {
  list-style: none;
  padding: 0;
}

.linha-box li {
  margin-bottom: 8px;
}

.linha-box li::before {
  content: "✓ ";
  color: #C5A46D;
  font-weight: bold;
}

.linha-box.destaque {
  background: linear-gradient(135deg, #050A30, #0A1AFF);
  color: white;
}

.linha-box.destaque h3 {
  color: #E5C98B;
}

@media (max-width: 768px) {
  .linhas-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= GALERIA ================= */
.grid-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item {
  overflow: hidden;
  border-radius: 10px;
}

.item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.item p {
  margin-top: 8px;
}

/* ================= FOOTER ================= */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #0f172a;
  color: white;
}

.instagram {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  background: linear-gradient(45deg, #833AB4, #E1306C);
}

.email {
  color: #38bdf8;
}

/* ================= BOTÃO FLUTUANTE ================= */
.btn-ultra {
  position: fixed;
  overflow: hidden;
  bottom: 120px;
  right: 25px;

  background: linear-gradient(135deg, #050A30, #0A1AFF);
  color: white;

  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;

  z-index: 999;
  transition: all 0.4s ease;
}

.btn-ultra::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );

  transform: skewX(-25deg);
  transition: 0.8s ease;
  animation: brilhoBotao 3s infinite;
}

.btn-ultra:hover::after {
  left: 180%;
}

.btn-ultra:hover {
  transform: translateY(-4px);
}

@keyframes brilhoBotao {
  0% {
    left: -150%;
  }
  100% {
    left: 180%;
  }
}

.btn-modal {
  margin-top: 25px;
  background: linear-gradient(135deg, #C5A46D, #E5C98B);
  color: #050A30;
  padding: 16px 38px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn-modal:hover {
  transform: scale(1.05);
}
/* ================= DEPOIMENTOS ================= */

.depoimentos {
  padding: 90px 20px;
  background: #0b0f24;
  text-align: center;
  color: white;
}

.depoimentos h2 {
  font-size: 38px;
  margin-bottom: 50px;
}

.depoimentos-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.depoimento {
  width: 300px;
  background: linear-gradient(145deg, #C5A46D, #E5C98B);
  color: #050A30;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(197,164,109,0.35);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.depoimento span {
  display: block;
  margin-top: 15px;
  color: #050A30;
  font-weight: bold;
}

.depoimento p {
  font-style: italic;
  margin-bottom: 15px;
}


/* ================= AREA ================= */

.atendimento-area {
  padding: 70px 20px;
  text-align: center;
}
.atendimento-area h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.atendimento-area p {
  font-size: 20px;
  max-width: 1000px;
  margin: auto;
  line-height: 1.8;
}

/* ================= DIFERENCIAIS ================= */

.diferenciais {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 70px 20px;
}

.diferenciais div {
  background: #0b0f24;
  color: #C5A46D;
  padding: 28px 35px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: bold;
  min-width: 220px;
  text-align: center;
}



/* ================= RESPONSIVO MOBILE ================= */
@media (max-width: 768px) {

  /* GERAL */
  section {
    padding: 45px 15px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  p, li {
    font-size: 14px;
    line-height: 1.5;
  }

  /* HEADER */
  header {
    padding: 12px 14px;
  }

  .header-container {
    gap: 8px;
  }

  .logo {
    width: 72px;
  }

  .nome-empresa {
    font-size: 13px;
    white-space: nowrap;
  }

  .logo-area {
    gap: 6px;
    max-width: 180px;
  }

  .menu-toggle {
  display: block;
  font-size: 26px;
  margin-left: auto;
  padding-right: 8px;
}

 .menu {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;

  background: rgba(5, 10, 48, 0.97);
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;

  padding: 14px 8px;
  box-sizing: border-box;
}

.menu a {
  font-size: 13px;
}

  .menu.ativo {
    display: flex;
  }

  .btn-topo {
    padding: 8px 14px;
    font-size: 12px;
  }
/* VIDEO MOBILE */

.video-destaque {
  height: 55vh;
}

.overlay-video {
  padding: 15px;
}

.overlay-video h2 {
  font-size: 24px;
  line-height: 1.3;
  max-width: 95%;
}

.btn-video {
  padding: 10px 20px;
  font-size: 14px;
}
  /* SHOWROOM */
  .showroom {
    padding: 50px 15px;
  }

  .showroom::before {
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);

  width: 1100px;
  height: 998px;

  background: url("img/logo.png") no-repeat center;
  background-size: contain;

  opacity: 0.06;
  z-index: 0;
}

  .grid,
  .grid-galeria {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card {
    height: 190px;
    border-radius: 12px;
  }

  .legenda-card {
    font-size: 10px;
    padding: 7px;
  }

  /* BOTÕES */
  .btn {
    padding: 11px 20px;
    font-size: 14px;
  }

  /* SOBRE */
  .sobre-servicos .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .sobre-box,
  .servicos-box {
    text-align: center;
  }

  .logo-centro img {
    width: 120px;
  }

  /* LINHAS */
  .linhas-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .linha-box {
    padding: 18px;
  }

  /* GALERIA */
  .item img {
    height: 160px;
  }

  .item p {
    font-size: 12px;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px 15px 95px;
  }

  .instagram { order: 1; }
  .email { order: 2; }
  .empresa { order: 3; }

  /* BOTÃO FLUTUANTE */
  .btn-ultra {
    right: 10px;
    bottom: 12px;
    padding: 8px 11px;
    max-width: 130px;
    border-radius: 12px;
  }

  .btn-ultra svg {
    width: 15px;
    height: 15px;
  }

  .btn-ultra .texto {
    font-size: 9px;
    line-height: 1.2;
  }

  .btn-ultra .texto br {
    display: none;
  }

  .btn-ultra strong {
    font-size: 9px;
  }

  /* MODAL */
  .modal-img {
    max-width: 95%;
    max-height: 60vh;
  }

  .legenda {
    font-size: 16px;
    padding: 0 15px;
    text-align: center;
  }

  .btn-modal {
    padding: 12px 24px;
    font-size: 15px;
  }
  

/* ================= FOOTER ================= */

.footer {
  text-align: center;
  padding: 50px 20px;
}

.footer a {
  display: block;
  margin: 10px 0;
}
}
