/* ================================
   🔥 RESET & BASE
=================================== */
*, body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ================================
   🔥 BACKGROUND VIDEO
=================================== */
#bg-img {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35) blur(8px); /* brilho + blur */
}

.back-dep {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAF0lEQVQIW2NkQAKMUPZ/BgYGRhgHLAYAEnEBBHGlZskAAAAASUVORK5CYII=) repeat, url(../../img/social.png);
    background-position: top center;
    background-size: 3px, auto;
    background-attachment: fixed;
    background-repeat: repeat, no-repeat;
}

/* ================================
   🔥 LAYOUT PRINCIPAL
=================================== */
header, section, footer {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  text-align: center;
}

h1, h2, h3 { margin-bottom: 20px; }
p { line-height: 1.6; }

/* ================================
   🔥 NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar img.logo { height: 40px; margin: 1%; }
.navbar nav { display: flex; gap: 30px; }

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover { color: #ff1f1f; }
.navbar .btn { font-size: 0.9rem; margin-right: 1%; }

/* ================================
   🔥 HERO
=================================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 90px; /* evita sobreposição da navbar */
}

.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.1;
  margin: 0 0 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 100vh;
  margin: 0 auto 28px;
  line-height: 1.55;
  color: #f1f1f1;
}

.hero-sub .ink { font-weight: 600; color: #ffb347; }

/* ================================
   🔥 BOTÕES
=================================== */
.btn {
  background: #ff1f1f;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.btn:hover { background: #ff4242; }

#btnpanel {
  background-color: #351b05;
  margin-right: 10px;
  padding: 8px 10px;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-primary {
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  background: #f73e3f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: background .25s ease;
}

.btn-primary:hover { background: #d82c2d; }

.btn-secondary {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all .25s ease;
}

.btn-secondary:hover { background: rgba(255,255,255,.1); }

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover { background-color: #1ebe5d; }


.whatsapp-fixo {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    height: 50px;
    width: 50px;
}
/* ================================
   🔥 TEXTOS DECORADOS
=================================== */
.accent-ink,
.accent-relax {
  position: relative;
  font-weight: 800;
  color: #fff;
  display: inline-block;
}
a{
  text-decoration: none;
  color: white;
}
.accent-ink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.1em;
  height: 0.35em; width: 0;
  background: linear-gradient(90deg, #ff1a1a, #ff8c00, #ffea00, #4caf50);
  border-radius: .2em;
  z-index: -1;
  animation: growOnce 2s ease-out forwards, breathing-bar 3s ease-in-out infinite;
  animation-delay: 0s, 2s;
}

.accent-relax::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.1em;
  height: 0.35em; width: 0;
  background: linear-gradient(90deg, #4caf50, #00c4cc, #2196f3, #9c27b0);
  border-radius: .2em;
  z-index: -1;
  animation: growOnce 2s ease-out forwards, breathing-bar-inverse 3s ease-in-out infinite;
  animation-delay: 0s, 2s;
}

@keyframes growOnce { from { width: 0%; } to { width: 100%; } }
@keyframes breathing-bar { 0%{width:100%} 50%{width:95%} 100%{width:100%} }
@keyframes breathing-bar-inverse { 0%{width:90%} 50%{width:100%} 100%{width:90%} }

.muted { font-weight: 700; color: #f9f9f9; opacity: .92; }

/* ================================
   🔥 COMPONENTES
=================================== */
.valor { font-size: 42px !important; color: #1ae000; margin: 20px; }
.rounded-5 { border-radius: 2rem !important; margin-bottom: 8%;}
.img-fluid { width: 40%; height: 40vh; background-color: rgba(255, 255, 255, 0.295); border-radius: 5%; }

.videoBorder {
  width: 100%; height: 55vh ;
  background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
              radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
              radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
              radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
              linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
              linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
              linear-gradient(transparent 0%, #ff0000 100%);
  border-radius: 8px;
  padding: 9px;
  box-sizing: border-box;
}

.visible { visibility: visible !important; }
iframe { border: 0; }


/* ================================
   💰 SEÇÃO DE PREÇOS
================================ */
.pricing {
  background: #f7f7f7; /* fundo CLARO para contraste */
  color: #222;
  padding: 80px 20px;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.pricing .sub {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.price-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.price-card .valor {
  font-size: 2rem;
  font-weight: bold;
  color: #ff1f1f;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.price-card.destaque {
  border: 2px solid #ff1f1f;
  transform: scale(1.05);
}


/* ================================
   🔥 CARDS & STEPS
=================================== */
.fb{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 35vh;
  justify-content: space-between;
}
.card,
.step {
  background: rgba(255,255,255,0.9);
  color: #333;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 24px;
  text-align: center;
}

.card i {
  font-size: 2rem;
  color: #ff5f1f;
  margin-bottom: 8px;
  display: inline-block;
}

.card img,
.step img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.stars { color: #ffcc00; margin: 10px 0; }

.step {
  border-radius: 15px;
  padding: 20px;
}

.step span {
  display: inline-block;
  background: #ff1f1f;
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* ================================
   🔥 MODELS (sem bg, clean)
=================================== */
.models {
  background: transparent;   /* sem fundo */
  color: #fff;               /* texto branco */
  border-radius: 20px;
  margin: 10%;
  padding-bottom: 2%;
  text-align: center;

}

.models img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1%;
}

.models h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.models p {
  font-size: 0.95rem;
  color: #ddd;
}

/* ================================
   🔥 GRID & LAYOUTS
=================================== */
.grid,
.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
}

.steps { align-items: start; }

/* ================================
   🔥 SWIPER
=================================== */
.swiper { width: 100%; }
.swiper .card img { margin-bottom: 10px; }
.swiper-button-prev, .swiper-button-next { color: #fff; }
.swiper-pagination-bullet { background: #fff; opacity: .6; }
.swiper-pagination-bullet-active { opacity: 1; }

/* ================================
   🔥 FORMULÁRIOS
=================================== */
#closeModal {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

#closeModal:hover {
  color: red;
}

/* Bloqueia scroll quando o modal estiver aberto */
body.modal-open {
  overflow: hidden;
}

    /* Botão principal */
    .open-btn {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      background: #007bff;
      color: white;
      transition: 0.3s;
    }
    .open-btn:hover {
      background: #0056b3;
    }

    /* Fundo escuro transparente */
      .modal-bg {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.75);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px; /* espaço seguro nas bordas */
    }


    /* Formulário (modal) */
   .modal {
      background: #fff;
      width: 100%;
      max-width: 380px;
      max-height: calc(100dvh - 32px); /* usa viewport real do celular */
      border-radius: 16px;
      padding: 20px 16px 16px;
      box-shadow: 0 12px 30px rgba(0,0,0,.35);

      display: flex;
      flex-direction: column;

      overflow: hidden; /* trava overflow externo */
      position: relative;
    }

    .modal-content {
      overflow-y: auto;
      padding-right: 4px;
    }

    .modal h2 {
      margin-bottom: 20px;
      font-size: 20px;
      color: #333;
    }

    .modal input {
      width: 90%;
      padding: 12px;
      margin: 8px 0;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
    }

    .modal textarea {
      width: 90%;
      padding: 10px;
      margin: 8px 0;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
      resize: vertical; /* só redimensiona verticalmente */
      min-height: 80px; /* altura inicial */
    }


    .modal button {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border: none;
      border-radius: 8px;
      background: #28a745;
      color: white;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .modal button:hover {
      background: #218838;
    }

/* ================================
   🔥 FOOTER
=================================== */
footer { background: rgba(0,0,0,0.4); width: 100%;}

.cta-footer {
  display: flex;
  flex-direction: column;    
  align-items: center;
  text-align: center;
  padding: 20px 0px;
}

.copy-footer {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #aaa;
  background: rgba(0,0,0,0.5);
}

/* ================================
   🔥 PARCEIROS
=================================== */
#parceiros { padding: 0; }

#lista-parceiros {
  margin: 0 8px 0 10px;
  padding: 0;
  display: flex;
  width: 100%;
  height: 118px;
  list-style: none;
  border-radius: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #444 #9b9b9b00;
}

#lista-parceiros::-webkit-scrollbar { height: 8px; }
#lista-parceiros::-webkit-scrollbar-track { background: #44444400; }
#lista-parceiros::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 10px;
}

#lista-parceiros img {
  max-height: 100px;
  user-select: none;
  background-color: rgba(255,255,255,0.527);
  border-radius: 10%;
  margin: 10px;
}

/* ================================
   🔥 WHATSAPP BOX
=================================== */
.whatsapp-box { margin-top: 20px; text-align: center; }

/* ================================
   🔥 RESPONSIVIDADE
=================================== */
@media(max-width: 830px){
  .img-fluid{width: 100%; height: 35vh ;}
  .videoBorder { width: 100%; height: 60vh ;}
  .navbar nav { display: none; }
  header, section, footer { padding: 50px 15px; }
  .modal {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .modal h2 {
    font-size: 17px;
  }

  .modal button {
    font-size: 15px;
    padding: 14px;
  }
}
