/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
    background-color: #000;
}

/* HEADER */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;

  height: 80px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);

  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 70px;
}

/* NAV */
.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #d4af37;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* BOTÃO (caso volte a usar) */
.btn-agendar {
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #000;

  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.5);

  transition: 0.3s;
}

.btn-agendar:hover {
  background: #d4af37;
  color: #000;
}

/* HAMBURGUER */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 24px;

  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #000;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MENU MOBILE */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;

  background: #0d0d0d;

  padding: 80px 25px 30px;

  display: flex;
  flex-direction: column;

  transition: 0.4s ease;
  z-index: 999;

  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 30px;
}

.mobile-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #d4af37;
  padding-left: 6px;
}

/* MOBILE AJUSTES */
@media(max-width: 900px) {

  .header {
    height: 70px;
  }

  .header-container {
    padding: 0 20px;
    height: 100%;
  }

  .logo img {
    height: 50px;
  }

  .nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

}

/* HERO */

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: flex-end; /* joga conteúdo pra baixo */
  justify-content: center;
  text-align: center;

  padding-bottom: 80px;
}

/* ================= VÍDEOS ================= */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* controle de exibição */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* ================= OVERLAY ================= */

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ================= CONTEÚDO ================= */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* TEXTO */

.hero p {
  font-size: 18px;
  color: #a9a8a8;

  opacity: 0;
  transform: translateY(40px);
}

/* ================= BOTÕES ================= */

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 14px 30px;
  border-radius: 6px; 
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-size: 14px;

  transition: all 0.3s ease;
  position: relative;

  opacity: 0;
}

.btn-outline {
  border: 1px solid #d4af37;
  color: #fff !important;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}

.btn-solid {
  background: #d4af37;
  color: #000;
  border: 1px solid #d4af37;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
}

.btn-solid:hover {
  background: #c29b2f;
  border-color: #c29b2f;
}

.btn:active {
  transform: scale(0.97);
}

/* ================= RESPONSIVO ================= */

@media(max-width: 768px) {

  .hero {
    padding-bottom: 60px;
  }

  /* troca vídeo */
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 220px;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
  }
}

/*sobre a empresa*/

.sobre {
  background: #070707;
  color: #fff;
  padding: 100px 20px;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.sobre-texto {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
}

.tag {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 3px;
}

.sobre-texto h2 {
  font-size: 42px;
  margin: 15px 0;
}

.sobre-texto h2 span {
  color: #d4af37;
}

.sobre-texto p {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

.sobre-itens {
  display: flex;
  gap: 40px;
 
  
}

.sobre-itens span {
  font-size: 13px;
  color: #888;
}

.sobre-img-box {
  flex: 1.2;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.sobre-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.numeros {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;

  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 15px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.numero {
  text-align: center;
}

.numero h3 {
  color: #d4af37;
  font-size: 30px;
}

.numero span {
  font-size: 11px;
  color: #aaa;
}


@media(max-width: 900px) {
  .sobre-container {
    flex-direction: column;
  }

  .sobre-texto {
    text-align: center;
  }

  .sobre-itens {
    justify-content: center;
    font-size: 14px;
  }

  .sobre-img-box img {
    height: 350px;
  }

  .numeros {
    position: relative;
    bottom: 0;
    margin-top: 20px;

    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

 
  .numero:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
  }

  .sobre-texto h2 {
  font-size: 31px;
  
}

}

/*serviços*/

.servicos {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.servicos-header {
  text-align: center;
  margin-bottom: 60px;
}

.servicos-header span {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 3px;
}

.servicos-header h2 {
  font-size: 42px;
}

.carrossel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 calc(33.333% - 13px);
  background: #111;
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card h3 {
  margin: 15px;
}

.card p {
  margin: 0 15px 15px;
  color: #aaa;
}

.card button {
  margin: 0 15px 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  color: #d4af37;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* hover premium */
.card button:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* efeito clique */
.card button:active {
  transform: scale(0.95);
}


.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  width: 40px;
  height: 40px;
  color: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
}

.left { left: 10px; }
.right { right: 10px; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  width: 95%;
  max-width: 800px;
  height: 90vh;
  background: #0b0b0b;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-top-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.tag {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 2px;
}

.modal-body h2 {
  font-size: 28px;
  margin: 10px 0 20px;
  color: #fff;
}

.desc {
  color: #aaa;
  line-height: 1.6;
}

.info-row {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  color: #fff;
}

.info-row span {
  font-size: 11px;
  color: #777;
}

.info-row strong {
  display: block;
  font-size: 16px;
  margin-top: 5px;
}

.process-title {
  margin: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #d4af37;
}

.step {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.step-num {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 8px;
  font-size: 12px;
}

.step h4 {
  margin-bottom: 5px;
  color: #fff;
}

.step p {
  color: #aaa;
  font-size: 13px;
}

.btn-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: #d4af37;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-modal:active {
  transform: scale(0.95);
}

.modal-img-wrapper {
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #d4af37;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 768px) {
  .card {
    flex: 0 0 100%;
  }

  .modal-box {
    flex-direction: column;
  }

  .modal-img,
  .modal-info {
    width: 100%;
  }
}

/*outros serviços*/

.outros {
  background: #0a0a0a;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.outros h2 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #f6c410;
}

.outros-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  height: 380px;
}

.outros-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.outros-card {
  position: absolute;
  width: 420px;
  opacity: 0;
  transition: all 0.6s ease;
}

.outros-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.outros-card.active {
  opacity: 1;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.outros-card.prev {
  opacity: 0.4;
  left: 5%;
  transform: scale(0.85);
}

.outros-card.next {
  opacity: 0.4;
  right: 5%;
  transform: scale(0.85);
}

.outros-content {
  position: relative;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: left;
  overflow: hidden;
}

.outros-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08),
    transparent 70%
  );
  animation: brilho 6s linear infinite;
}

@keyframes brilho {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.outros-content h3 {
  font-size: 22px;
  color: #fff;
}

.outros-content p {
  color: #ccc;
  font-size: 14px;
  margin: 8px 0;
}

.outros-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 18px;
  padding: 10px 18px;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: #d4af37;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;

  cursor: pointer;
  transition: all 0.3s ease;
}

.outros-content a:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.outros-content a:active {
  transform: scale(0.95);
}

.outros-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.prev { left: -10px; }
.next { right: -10px; }

@media (max-width: 768px) {

  .outros-wrapper {
    height: 320px;
  }

  .outros-card {
    width: 85%;
  }

  .outros-card.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
  }

  .outros-card.prev {
    left: -20%;
    opacity: 0.25;
  }

  .outros-card.next {
    right: -20%;
    opacity: 0.25;
  }

  .outros h2 {
    font-size: 26px;
  }
}

/*localização*/

.localizacao {
  position: relative;
  background: url('img/capa2.png') center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
}

.localizacao-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.localizacao-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.localizacao h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  font-weight: 600;
  color: #f6c410;
}

.localizacao-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.localizacao-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.011);
  backdrop-filter: blur(5px);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ÍCONE */
.icon-local {
  width: 34px;
  margin-bottom: 20px;
}

/* ENDEREÇO */
.endereco {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

/* CEP (corrigido mobile) */
.cep {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

/* TEXTO REFERÊNCIA */
.referencia {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 25px;
}

/* BOTÃO */
.localizacao-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: #d4af37;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;

  transition: 0.3s;
}

.localizacao-info a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* mapa */
.localizacao-mapa {
  flex: 1;
  height: 350px;
  border: 2px solid rgba(255,255,255,0.1);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {

  .localizacao {
    padding: 80px 15px;
    background: url('img/capa2-celular.png') center/cover no-repeat;
  }

  .localizacao h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .localizacao-content {
    flex-direction: column;
  }

  .localizacao-info {
    padding: 25px;
    width: 100%;
  }

  .localizacao-mapa {
    width: 100%;
    height: 280px;
  }

  /* garante que o CEP NÃO vire botão bugado */
  .cep {
    display: block;
    width: 100%;
  }
}

/*form*/


.contato {
  background: #0b0b0b;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.contato-container {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.contato h2 {
  color: #f6c410;
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contato-form {
  position: relative;
  padding: 50px 45px;

  background: url('img/form.png') center/cover no-repeat;

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(242,183,5,0.05);

  overflow: hidden;
}

.contato-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 0;
}

.contato-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #f2b705, transparent);
  z-index: 2;
}

.input-group {
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #f2b705;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px rgba(242,183,5,0.2);
}

.contato-form textarea {
  min-height: 140px;
  resize: none;
}

.contato-form button {
  width: 100%;
  padding: 16px;
  margin-top: 10px;

  background: linear-gradient(135deg, #f2b705, #d9a404);
  color: #000;

  border: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: 0.3s;

  position: relative;
  z-index: 2;
}

.contato-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242,183,5,0.25);
}

.contato-form button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {

  .contato {
    padding: 80px 15px;
  }

  .contato h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contato-form {
    padding: 30px 25px;
  }

  .contato-form input,
  .contato-form textarea {
    padding: 14px;
    font-size: 13px;
  }
}

.footer {
    background: #000;
    color: #ccc;
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
}

.footer-logo .logo {
    width: 140px;
    margin-bottom: 20px;
   
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 15px;
     text-align: center;
}

.footer-social img {
    width: 35px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-item img {
    width: 20px;
    margin-top: 5px;
}

.footer-item strong {
    color: #fff;
    font-size: 14px;
}

.footer-item p {
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f3c521;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 13px;
    color: #888;
}


/* impede estilo automático de links detectados */
a[href^="maps"] {
  color: inherit;
   color: inherit !important;
  text-decoration: none !important;
}

/* remove highlight iOS/Android */
.footer * {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-fill-color: inherit;
}

.address,
.cep {
  color: #aaa;
  text-decoration: none;
}


@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo .logo {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-item {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-item img {
        width: 18px;
        margin-top: 3px;
    }

    .footer-item p {
        font-size: 13px;
        line-height: 1.4;
        text-decoration: none;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
        text-decoration: none;
    }

    .footer-links li {
        margin-bottom: 5px;
         text-decoration: none;
    }

    .footer-links a {
        font-size: 14px;
        text-decoration: none;
    }

    .footer-bottom {
        margin-top: 40px;
        font-size: 12px;
        padding: 15px;
    }
}


.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #25d366;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;

    box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse 2s infinite;

    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 26px;
    height: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}

.btn-outline {
  border: 1px solid #d4af37;
  color: #fff !important;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}