* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
:root {
  --gold: #f5b400;
  --gold-dark: #d89c00;
  --black: #0b0b0b;
  --dark: #141414;
  --silver: #cfcfcf;
  --gray: #9ca3af;
  --bg: linear-gradient(135deg, #020617, #0f172a);
  --bg-1: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
}
h2,
h1,
h3,
h4,
.btn-primary,
.btn-accept {
  text-transform: uppercase;
}
h4 {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #f5c542,
    #fff1a8,
    #d4a017
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-size: 200% 100%;
  animation: shineGold 4s ease-in-out infinite;

  letter-spacing: 1px;
}
.title-gold {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #f5c542,
    #fff1a8,
    #d4a017
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-size: 200% 100%;
  animation: shineGold 4s ease-in-out infinite;

  letter-spacing: 1px;
}
@keyframes shineGold {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
.title-silver {
  font-size: 1.8rem;
  font-weight: 600;

  background: linear-gradient(
    90deg,
    #8e8e8e,
    #e6e6e6,
    #bfbfbf,
    #ffffff,
    #9c9c9c
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-size: 200% 100%;
  animation: shineSilver 5s ease-in-out infinite;
}
@keyframes shineSilver {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

section {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  background: var(--bg-1);
}
/*
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;

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

  padding: 0 40px;

  background: linear-gradient(135deg, #000000, #111111, #1a1a1a);

  z-index: 999;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}*/
.header {
  display: flex;
  align-items: center;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #f2c94c;
}

/* Sombra moderna ao rolar */
.header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ESCONDER */
.header.hide {
  transform: translateY(-100%);
}

.logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px;

  background: #000;

  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.logo img {
  height: 55px;
}
/* Por padrão mostra desktop */
.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

/* Quando for mobile */
@media (max-width: 900px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    width: 60px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 100px 25px;
  transition: 0.35s ease;
  z-index: 2100;
}
.menu.open,
.menu.active {
  right: 0;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1400;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  text-transform: uppercase;
}
.desktop {
  gap: 2rem;
  display: flex;
  align-items: center;
}
.desktop a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  text-transform: uppercase;
}
.desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: var(--black);
  transition: 0.3s;
}
.desktop a:hover {
  color: var(--black);
}
.desktop a:hover::after {
  width: 100%;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: var(--gold);
  transition: 0.3s;
}

.menu a:hover {
  color: var(--gold);
}

.menu a:hover::after {
  width: 100%;
}
.contact-list {
  display: flex;
  gap: 20px;
}

.contact-list a {
  color: #f2c94c;
  font-weight: 600;
  text-decoration: none;
}
.nav-left {
  background: #000;
  height: 100%;
  padding: 0 40px;

  display: flex;
  align-items: center;

  position: relative;

  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.logo img {
  height: 55px;
}
.nav-center {
  flex: 1;
  height: 100%;
  background: #f2c94c;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.nav-right {
  background: #000;
  height: 100%;
  padding: 0 40px;

  display: flex;
  align-items: center;

  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.contact-list {
  display: flex;
  gap: 20px;
}

.contact-list a {
  color: #f2c94c;
  font-weight: 600;
  text-decoration: none;
}

/* BOTÃO MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  position: absolute;
  right: 25px;
}
/* FUNDO ESCURO ATRÁS DO MENU */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

/* Quando menu abre */
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =====================
   MOBILE LATERAL
===================== */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-right {
    display: none;
  }

  .nav-center {
    justify-content: flex-end;
  }
  .nav-center nav {
    display: none;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #020617;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    padding: 90px 30px;
    transition: right 0.4s ease;
  }

  .menu.open {
    right: 0;
  }

  .menu a {
    text-align: right;
    font-size: 18px;
    margin: 15px 0;
    color: var(--gold);
  }

  .contact-list a {
    color: var(--gold);
  }
}
/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4)),
    url("/assets/images/banner.png");
  padding: 140px 20px;
  background-size: cover;
  background-position: center;

  padding: 120px 0;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 35px;
  max-width: 520px;
}

/* BOTÕES */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 235, 19, 0.904);
}

.btn-secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.1);
}

/* IMAGEM */

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 30px 60px;
  }

  .hero-content p {
    margin: 0 auto 15px;
    font-size: 0.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero h1 span {
    font-size: 1.2rem;
  }
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero-text h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-text span {
  display: block;
  color: var(--gold);
  margin-top: 8px;
}

.hero-text p {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 560px;
}

.hero-buttons {
  margin-top: 45px;
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 15px 34px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(245, 180, 0, 0.35);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 15px 34px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

.hero-image img {
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* Responsivo */

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* Ajuste para ícones nos cards de serviço */
.service-card i {
  display: block;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-card:hover i {
  transform: scale(1.1);
  color: white !important; /* Muda o ícone para branco no hover para dar contraste */
}

/* Espaçamento extra para a seção de CTA na página de serviços */
.services-cta {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}
.services {
  background: #0f0f0f;
  padding: 120px 20px;
  text-align: center;
}

.services h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 70px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.service-card a {
  cursor: pointer;
  z-index: 2000;
}

.service-card {
  background: #151515;
  padding: 50px 35px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, transparent, rgba(245, 180, 0, 0.25));
  opacity: 0;
  transition: 0.4s;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.6;
}
.services-intro {
  max-width: 700px;
  margin: 0 auto 80px;
}

.services-intro h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.services-intro p {
  color: var(--silver);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA final */

.services-cta {
  margin-top: 90px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-cta p {
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.7;
}
.about {
  background: #0b0b0b;
  padding: 120px 0;
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--silver);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.highlight-box {
  background: #151515;
  padding: 35px 20px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-box strong {
  color: var(--gold);
  font-size: 1.8rem;
  display: block;
}

.highlight-box span {
  color: var(--silver);
  font-size: 0.95rem;
}

/* Responsivo */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.features {
  background: #0f0f0f;
  padding: 110px 0;
  color: white;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  background: #151515;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  border-left: 4px solid var(--gold);
  color: var(--silver);
  font-size: 1.05rem;
}
.quick-contact {
  background: linear-gradient(135deg, #f5b400, #d89c00);
  padding: 90px 0;
  color: #000;
}

.contact-items {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1;
  width: 100%;
}
.contact-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
}

.contact-box h3 {
  margin-bottom: 10px;
}

.contact-box p {
  margin-bottom: 6px;
}

.contact-box.highlight {
  background: #000;
  color: white;
}
.footer {
  background: #0b0b0b;
  color: var(--silver);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer h4 {
  color: white;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: var(--silver);
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsivo */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact-map {
  padding: 80px 20px;
  background: #111;
  color: #fff;
}

.contact-map .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  background-color: var(--gold);
  padding: 40px 25px;
  border-radius: 15px;
}
.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

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

.contact-form button {
  background: #f2c94c;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  border: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
main {
  height: 100% auto;
}
/* Container do Modal de Cookies */
.cookie-container {
  position: fixed;
  bottom: -100px; /* Começa escondido */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: rgba(15, 15, 15, 0.95); /* Fundo escuro semi-transparente */
  border: 1px solid var(--gold);
  border-radius: 15px;
  padding: 20px 30px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  transition: bottom 0.5s ease-in-out;
  backdrop-filter: blur(10px); /* Efeito de vidro */
}

/* Quando o modal estiver ativo */
.cookie-container.active {
  bottom: 30px;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}

.cookie-text p {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.4;
}

.btn-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-accept:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-container {
    bottom: 15px;
    padding: 15px 20px;
  }

  .btn-accept {
    width: 100%;
  }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: #fff;
}

/* Tooltip (Legenda que aparece ao passar o mouse) */
.tooltip-whatsapp {
  position: absolute;
  right: 75px;
  background: #141414;
  color: var(--gold);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  border: 1px solid var(--gold);
}

.whatsapp-float:hover .tooltip-whatsapp {
  opacity: 1;
}

/* Animação de Pulsação */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ajuste para Mobile (não sobrepor o botão de cookies se estiver aberto) */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  .tooltip-whatsapp {
    display: none; /* Esconde o texto no mobile para não poluir */
  }
  section {
    max-width: 768px;
    padding: 15px;
    margin: 0 auto;
  }
  .services-grid,
  .about-highlight,
  .features-grid,
  .contact-map,
  .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .services {
    max-width: 100%;
    padding: 10px;
  }
  .contact-form,
  .map-box {
    max-width: 300px;
    width: 100%;
  }
  .contact-items {
    flex-wrap: wrap;
  }
  .services .container {
    padding: 10px;
    margin: 0;
    flex-direction: column;
    align-items: center;
  }
  .highlight-box {
    max-width: 300px;
    width: 100%;
  }
  .feature-item {
    max-width: 300px;
    width: 100%;
  }
  .btn-primary {
    max-width: fit-content;
  }
}
