/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

/* BODY + BACKGROUND */
body {
    position: relative;
    min-height: 100vh;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* OVERLAY ESCURO COM OPACIDADE (SEGURO PARA MOBILE) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,15,30,0.85),
        rgba(10,15,30,0.6),
        rgba(10,15,30,0.85)
    );
    z-index: 0;
    pointer-events: none;
}

/* GARANTE QUE O CONTEÚDO FIQUE ACIMA DO OVERLAY */
body > * {
    position: relative;
    z-index: 1;
}

/* HEADER */
.header {
    padding: 25px;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 180px;
}

/* HERO */
.hero {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero h1 span {
    color: #4da3ff;
}

/* DESTAQUE AMARELO */
.headline .destaque-title {
    color: #FFEA00;
    text-shadow: 0 0 12px rgba(255, 234, 0, 0.35);
}

/* SUBTÍTULO */
.subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.subtitle strong {
    color: #FFEA00;
}

.logo-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto;

    padding: 10px;
    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );

    box-shadow:
        0 15px 35px rgba(0,0,0,0.65),
        inset 0 0 0 1px rgba(255,255,255,0.12);

    backdrop-filter: blur(8px);

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

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.75),
        inset 0 0 0 1px rgba(255,255,255,0.18);
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
}


.micro-cta {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #FFEA00;
    text-shadow: 0 0 10px rgba(255,234,0,0.35);
}



/* VIDEO CONTAINER (GLASS + SHADOW) */
.video-wrapper {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 35px;
    padding: 12px;
    border-radius: 22px;

    aspect-ratio: 16 / 9;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );

    box-shadow:
        0 20px 40px rgba(0,0,0,0.65),
        inset 0 0 0 1px rgba(255,255,255,0.12);

    backdrop-filter: blur(8px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 50px rgba(0,0,0,0.75);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border: none;
}

/* CTA BUTTON */
.cta {
    display: inline-block;
    background: linear-gradient(90deg, #ff1f1f, #ff4d4d);
    padding: 18px 55px;
    border-radius: 60px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 15px 30px rgba(255,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: pulse 2.2s infinite;
}

.cta:hover {
    transform: scale(1.07);
    box-shadow: 0 20px 40px rgba(255,0,0,0.6);
}

/* ANIMAÇÃO CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    color: #9fb3d9;
}

/* 📱 MOBILE FIRST */
@media (max-width: 600px) {

    .hero h1 {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .cta {
        width: 100%;
        padding: 18px;
    }

    .video-wrapper {
        padding: 8px;
        border-radius: 18px;
    }

    .video-wrapper iframe {
        border-radius: 12px;
    }

    .logo-wrapper {
        width: 100px;
        height: 100px;
        padding: 8px;
    }

}


/* =========================
GERAL
========================= */

body{
  margin:0;
  padding:0;
  background:#050816;
  font-family:Arial, sans-serif;
  color:#fff;
}

/* =========================
SOBRE
========================= */

.sobre-app{
  padding:80px 20px;
  background:linear-gradient(to bottom,#050816,#081126);
}

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

.sobre-texto{
  flex:1;
  min-width:300px;
}

.sobre-badge{
  background:#ff2e43;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:20px;
}

.sobre-texto h2{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.sobre-texto h2 span{
  color:#ff2e43;
}

.sobre-texto p{
  color:#c7c7c7;
  font-size:18px;
  line-height:1.7;
}

.sobre-itens{
  margin-top:35px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.item:hover{
  transform:translateY(-4px);
  border-color:#ff2e43;
}

.icone{
  font-size:28px;
}

.item h3{
  margin:0;
  margin-bottom:6px;
  font-size:20px;
}

.item p{
  margin:0;
  font-size:15px;
}

.sobre-imagem{
  flex:1;
  min-width:300px;
  text-align:center;
}

.sobre-imagem img{
  width:100%;
  max-width:520px;
  border-radius:25px;
  box-shadow:0 0 40px rgba(255,46,67,0.25);
}

/* =========================
COMO FUNCIONA
========================= */

.como-funciona{
  padding:90px 20px;
  background:#081126;
}

.titulo-section{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:60px;
}

.titulo-section span{
  color:#ff2e43;
  font-weight:bold;
  letter-spacing:1px;
}

/* TÍTULO COM UNDERLINE ESTILOSO */

.titulo-section h2{
  font-size:58px;
  margin:15px 0 25px;
  position:relative;
  display:inline-block;
  font-weight:800;
  line-height:1.1;
}

/* UNDERLINE */

.titulo-section h2::after{
  content:'';
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:120px;
  height:6px;
  border-radius:20px;
  background:linear-gradient(90deg,#ff2e43,#ff7a85);
  box-shadow:0 0 18px rgba(255,46,67,0.7);
}

/* RESPONSIVO */

@media(max-width:768px){

  .titulo-section h2{
    font-size:38px;
  }

  .titulo-section h2::after{
    width:80px;
    height:5px;
  }

}

.titulo-section p{
  color:#c5c5c5;
  font-size:18px;
}

.passos{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.passo{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:25px;
  padding:35px 25px;
  text-align:center;
  transition:0.3s;
}

.passo:hover{
  transform:translateY(-5px);
  border-color:#ff2e43;
}

.numero{
  width:65px;
  height:65px;
  background:#ff2e43;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:bold;
  margin:auto;
  margin-bottom:20px;
  box-shadow:0 0 25px rgba(255,46,67,0.5);
}

.passo h3{
  font-size:24px;
  margin-bottom:15px;
}

.passo p{
  color:#c9c9c9;
  line-height:1.6;
}

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

@media(max-width:768px){

  .sobre-texto h2{
    font-size:34px;
  }

  .titulo-section h2{
    font-size:32px;
  }

}

/* =========================
DEPOIMENTOS PREMIUM
========================= */

.depoimentos{
  padding:100px 20px;
  background:linear-gradient(to bottom,#081126,#050816);
  overflow:hidden;
}

.depoimentos-wrapper{
  position:relative;
  max-width:1400px;
  margin:auto;
  margin-top:60px;
}

.depoimentos-slider{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:15px 60px;
  scrollbar-width:none;
}

.depoimentos-slider::-webkit-scrollbar{
  display:none;
}

/* =========================
CARD
========================= */

.depoimento-card{
  min-width:340px;
  max-width:340px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border-radius:30px;
  padding:35px;
  position:relative;
  transition:0.35s;
  overflow:hidden;
}

.depoimento-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#ff2e43,#ff7a85);
}

.depoimento-card:hover{
  transform:translateY(-8px);
  border-color:#ff2e43;
  box-shadow:
    0 0 30px rgba(255,46,67,0.15),
    0 0 60px rgba(255,46,67,0.08);
}

/* ASPAS */

.quote{
  position:absolute;
  top:15px;
  right:25px;
  font-size:70px;
  color:rgba(255,255,255,0.08);
  font-weight:bold;
}

/* TOPO */

.cliente-topo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:25px;
}

.cliente-foto{
  width:68px;
  height:68px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff2e43,#ff7a85);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:bold;
  color:#fff;
  box-shadow:0 0 25px rgba(255,46,67,0.4);
}

.cliente-topo h3{
  margin:0;
  font-size:22px;
  font-weight:700;
}

.cliente-topo span{
  color:#bdbdbd;
  font-size:14px;
}

/* ESTRELAS */

.estrelas{
  font-size:20px;
  margin-bottom:20px;
  letter-spacing:2px;
}

/* TEXTO */

.depoimento-card p{
  color:#d7d7d7;
  line-height:1.9;
  font-size:16px;
}

/* =========================
BOTÕES
========================= */

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  z-index:10;
  transition:0.3s;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
}

.slider-btn:hover{
  background:#ff2e43;
  transform:translateY(-50%) scale(1.08);
  box-shadow:0 0 25px rgba(255,46,67,0.5);
}

.prev{
  left:0;
}

.next{
  right:0;
}

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

@media(max-width:768px){

  .depoimento-card{
    min-width:280px;
    max-width:280px;
    padding:28px;
  }

  .depoimentos-slider{
    padding:15px 10px;
  }

  .slider-btn{
    display:none;
  }

}

/* =========================
PLANOS
========================= */

.planos{
  padding:100px 20px;
  background:
    radial-gradient(circle at top,#1a0004 0%,#081126 45%,#050816 100%);
  position:relative;
  overflow:hidden;
}

/* GRID */

.planos-grid{
  max-width:1300px;
  margin:auto;
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

/* CARD */

.plano-card{
  position:relative;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:35px;
  padding:45px 35px;
  backdrop-filter:blur(14px);
  transition:0.35s;
  overflow:hidden;
}

/* BRILHO */

.plano-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#ff2e43,#ff7a85);
}

.plano-card:hover{
  transform:translateY(-10px);
  border-color:#ff2e43;
  box-shadow:
    0 0 35px rgba(255,46,67,0.20),
    0 0 80px rgba(255,46,67,0.10);
}

/* PLANO DESTAQUE */

.destaque{
  border:1px solid #ff2e43;
  transform:scale(1.03);
  box-shadow:
    0 0 40px rgba(255,46,67,0.25),
    0 0 90px rgba(255,46,67,0.12);
}

.destaque:hover{
  transform:scale(1.05) translateY(-10px);
}

/* TAG */

.tag-popular{
  position:absolute;
  top:18px;
  right:-45px;
  background:linear-gradient(90deg,#ff2e43,#ff7a85);
  color:#fff;
  padding:10px 55px;
  font-size:12px;
  font-weight:bold;
  transform:rotate(45deg);
  letter-spacing:1px;
}

/* TOPO */

.plano-topo{
  text-align:center;
  margin-bottom:35px;
}

.plano-tipo{
  display:inline-block;
  margin-bottom:20px;
  font-size:18px;
  font-weight:700;
  letter-spacing:2px;
  color:#ff7a85;
}

/* PREÇO */

.preco{
  font-size:72px;
  font-weight:800;
  line-height:1;
  color:#fff;
}

.preco small{
  font-size:28px;
  vertical-align:top;
}

.preco span{
  font-size:30px;
}

/* BENEFÍCIOS */

.beneficios{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.beneficios li{
  color:#d8d8d8;
  font-size:17px;
  padding-left:5px;
  line-height:1.5;
}

/* BOTÃO */

.btn-plano{
  width:100%;
  height:60px;
  margin-top:35px;
  border-radius:18px;
  background:linear-gradient(90deg,#ff2e43,#ff5e6d);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  font-size:17px;
  transition:0.3s;
  box-shadow:0 0 25px rgba(255,46,67,0.35);
}

.btn-plano:hover{
  transform:translateY(-3px);
  box-shadow:0 0 35px rgba(255,46,67,0.55);
}

/* RESPONSIVO */

@media(max-width:768px){

  .planos{
    padding:80px 20px;
  }

  .preco{
    font-size:58px;
  }

  .preco small{
    font-size:24px;
  }

  .preco span{
    font-size:24px;
  }

  .destaque{
    transform:none;
  }

  .destaque:hover{
    transform:translateY(-8px);
  }

}

/* =========================
FAQ COMPACTO PREMIUM
========================= */

.faq{
  padding:90px 20px;
  background:
    radial-gradient(circle at top,#120003 0%,#081126 45%,#050816 100%);
}

.faq-container{
  max-width:1100px;
  margin:auto;
  margin-top:50px;
  display:flex;
  flex-direction:column;
}

/* ITEM */

.faq-item{
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding:5px 0;
}

/* BOTÃO */

.faq-pergunta{
  width:100%;
  background:none;
  border:none;
  outline:none;
  color:#fff;
  font-size:21px;
  font-weight:500;
  padding:22px 10px;
  cursor:pointer;

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

  transition:0.3s;
  text-align:left;
}

/* SETINHA */

.faq-pergunta span{
  font-size:18px;
  color:#ffcc00;
  transition:0.3s;
}

/* HOVER */

.faq-item:hover .faq-pergunta{
  color:#ff5e6d;
}

/* RESPOSTA */

.faq-resposta{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}

.faq-resposta p{
  color:#d0d0d0;
  font-size:16px;
  line-height:1.7;
  padding:0 10px 18px;
  margin:0;
}

/* ACTIVE */

.faq-item.active .faq-resposta{
  max-height:500px;
}

.faq-item.active .faq-pergunta span{
  transform:rotate(180deg);
  color:#ff2e43;
}

/* RESPONSIVO */

@media(max-width:768px){

  .faq{
    padding:70px 20px;
  }

  .faq-pergunta{
    font-size:17px;
    padding:18px 5px;
  }

  .faq-resposta p{
    font-size:15px;
  }

}

.premium-section{
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg,#030817 0%, #071738 100%);
  overflow: hidden;
}

.premium-glow{
  position:absolute;
  width:500px;
  height:500px;
  background: rgba(30,115,255,0.18);
  border-radius:50%;
  filter: blur(100px);
  top:-150px;
  left:50%;
  transform:translateX(-50%);
}

.premium-content{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.mini-badge{
  display:inline-block;
  background:rgba(255,230,0,0.12);
  color:#ffe600;
  border:1px solid rgba(255,230,0,0.3);
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:25px;
}

.premium-content h2{
  font-size:54px;
  color:#fff;
  margin-bottom:20px;
  line-height:1.1;
}

.premium-content h2 span{
  color:#4ea3ff;
}

.premium-content p{
  max-width:760px;
  margin:auto;
  font-size:20px;
  color:#d7d7d7;
  line-height:1.7;
  margin-bottom:45px;
}

.benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:45px;
}

.benefit-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius:18px;
  padding:22px;
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.benefit-card:hover{
  transform:translateY(-5px);
  border-color:#1e73ff;
  box-shadow:0 0 25px rgba(30,115,255,0.25);
}

.cta{
  display:inline-block;
  background: linear-gradient(90deg,#00c853,#00e676);
  color:#fff;
  text-decoration:none;
  font-size:20px;
  font-weight:800;
  padding:20px 42px;
  border-radius:16px;
  transition:0.3s;
  box-shadow:0 10px 35px rgba(0,230,118,0.35);
  animation:pulse 2s infinite;
}

.cta:hover{
  transform:scale(1.05);
  box-shadow:0 15px 40px rgba(0,230,118,0.45);
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.03);
  }
  100%{
    transform:scale(1);
  }
}

@media(max-width:900px){

  .benefits{
    grid-template-columns:repeat(2,1fr);
  }

  .premium-content h2{
    font-size:40px;
  }

  .premium-content p{
    font-size:18px;
  }

}

@media(max-width:600px){

  .benefits{
    grid-template-columns:1fr;
  }

  .premium-content h2{
    font-size:32px;
  }

  .cta{
    width:100%;
    text-align:center;
    font-size:18px;
  }

}

.premium-footer-section{
  position:relative;
  padding:80px 20px;
  background:
    linear-gradient(90deg,#220000 0%, #3a0000 50%, #220000 100%);
  overflow:hidden;
}

.premium-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,
    rgba(255,174,0,0.08),
    transparent 60%);
}

.premium-footer-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.premium-quality{
  flex:1;
  min-width:320px;
}

.seal-box{
  margin-bottom:35px;
}

.seal-circle{
  width:260px;
  height:260px;
  border-radius:50%;
  background:
    radial-gradient(circle,#2b2b2b 35%, #111 100%);
  border:12px solid #d4a017;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  box-shadow:0 0 40px rgba(255,174,0,0.25);
  position:relative;
}

.seal-circle::before{
  content:"";
  position:absolute;
  inset:-18px;
  border:10px solid #f4c542;
  border-radius:50%;
  opacity:0.8;
}

.small-text{
  font-size:16px;
  text-align:center;
  letter-spacing:1px;
  color:#ddd;
  margin-bottom:10px;
}

.seal-circle h2{
  font-size:72px;
  color:#fff;
  line-height:1;
}

.big-text{
  margin-top:10px;
  font-size:24px;
  font-weight:bold;
  color:#f5f5f5;
}

.payment-methods{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

.pay-card{
  background:#ffffff;
  color:#111;
  padding:14px 22px;
  border-radius:12px;
  font-weight:700;
  min-width:120px;
  text-align:center;
  transition:0.3s;
}

.pay-card:hover{
  transform:translateY(-4px);
}

.footer-links-box{
  width:320px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:35px;
}

.footer-links-box h3{
  color:#ffd54f;
  font-size:30px;
  margin-bottom:25px;
}

.footer-links-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links-box li{
  margin-bottom:18px;
}

.footer-links-box a{
  color:#ffffff;
  text-decoration:none;
  font-size:18px;
  transition:0.3s;
  display:inline-block;
}

.footer-links-box a:hover{
  color:#ffd54f;
  transform:translateX(5px);
}

.footer-mini-text{
  margin-top:30px;
  color:#cccccc;
  line-height:1.6;
  font-size:15px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:20px;
}

@media(max-width:900px){

  .premium-footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .seal-circle{
    margin:auto;
  }

  .payment-methods{
    justify-content:center;
  }

  .footer-links-box{
    width:100%;
    max-width:500px;
  }

}

@media(max-width:600px){

  .seal-circle{
    width:210px;
    height:210px;
  }

  .seal-circle h2{
    font-size:56px;
  }

  .big-text{
    font-size:20px;
  }

  .pay-card{
    min-width:100px;
    padding:12px 16px;
    font-size:14px;
  }

}

.premium-footer-section{
  position:relative;
  padding:80px 20px;
  background:
    linear-gradient(90deg,#220000 0%, #3a0000 50%, #220000 100%);
  overflow:hidden;
}

.premium-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,
    rgba(255,174,0,0.08),
    transparent 60%);
}

.premium-footer-container{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  flex-wrap:wrap;
}

.premium-quality{
  display:flex;
  justify-content:center;
  align-items:center;
}

.seal-circle{
  width:250px;
  height:250px;
  border-radius:50%;
  background:
    radial-gradient(circle,#2b2b2b 35%, #111 100%);
  border:12px solid #d4a017;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  box-shadow:0 0 40px rgba(255,174,0,0.25);
  position:relative;
  text-align:center;
}

.seal-circle::before{
  content:"";
  position:absolute;
  inset:-18px;
  border:10px solid #f4c542;
  border-radius:50%;
  opacity:0.8;
}

.small-text{
  font-size:16px;
  letter-spacing:1px;
  color:#ddd;
  margin-bottom:10px;
  line-height:1.3;
}

.seal-circle h2{
  font-size:70px;
  color:#fff;
  line-height:1;
  margin:0;
  text-align:center;
}

.big-text{
  margin-top:10px;
  font-size:24px;
  font-weight:bold;
  color:#f5f5f5;
}

.footer-links-box{
  width:300px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:35px;
}

.footer-links-box h3{
  color:#ffd54f;
  font-size:30px;
  margin-bottom:25px;
  text-align:center;
}

.footer-links-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links-box li{
  margin-bottom:18px;
  text-align:center;
}

.footer-links-box a{
  color:#ffffff;
  text-decoration:none;
  font-size:18px;
  transition:0.3s;
  display:inline-block;
}

.footer-links-box a:hover{
  color:#ffd54f;
  transform:translateX(5px);
}

.footer-mini-text{
  margin-top:30px;
  color:#cccccc;
  line-height:1.6;
  font-size:15px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:20px;
  text-align:center;
}

@media(max-width:900px){

  .premium-footer-container{
    flex-direction:column;
    gap:40px;
  }

}

@media(max-width:600px){

  .seal-circle{
    width:210px;
    height:210px;
  }

  .seal-circle h2{
    font-size:56px;
  }

  .big-text{
    font-size:20px;
  }

  .footer-links-box{
    width:100%;
  }

}



/* =========================================
   COOKIE BANNER
========================================= */

#lb-cookie-banner{
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);

  width:95%;
  max-width:900px;

  background:rgba(8,16,40,0.96);
  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  border-radius:18px;

  padding:22px 25px;

  z-index:999999;

  box-shadow:0 10px 40px rgba(0,0,0,0.45);

  display:none;

  animation:cookieUp 0.5s ease;
}

@keyframes cookieUp{
  from{
    opacity:0;
    transform:translate(-50%, 30px);
  }

  to{
    opacity:1;
    transform:translate(-50%, 0);
  }
}

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

.lb-cookie-text{
  color:#ffffff;
  font-size:15px;
  line-height:1.7;
  flex:1;
}

.lb-cookie-buttons{
  display:flex;
  align-items:center;
  gap:15px;
}

.lb-cookie-link{
  color:#ffea00;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
  white-space:nowrap;
}

.lb-cookie-link:hover{
  color:#ffffff;
}

#lb-cookie-accept{
  background:#ff2e43;
  border:none;
  color:#ffffff;

  padding:12px 26px;

  border-radius:12px;

  font-size:14px;
  font-weight:800;
  letter-spacing:0.5px;

  cursor:pointer;

  transition:0.3s;

  white-space:nowrap;

  box-shadow:0 8px 25px rgba(255,46,67,0.35);
}

#lb-cookie-accept:hover{
  transform:scale(1.05);
  opacity:0.92;
}

@media(max-width:768px){

  #lb-cookie-banner{
    bottom:15px;
    padding:20px;
    width:92%;
  }

  .lb-cookie-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .lb-cookie-buttons{
    width:100%;
    justify-content:space-between;
    gap:12px;
  }

  #lb-cookie-accept{
    flex:1;
    text-align:center;
  }

}

@media(max-width:480px){

  .lb-cookie-text{
    font-size:14px;
  }

  .lb-cookie-buttons{
    flex-direction:column;
    width:100%;
  }

  .lb-cookie-link{
    width:100%;
    text-align:center;
  }

  #lb-cookie-accept{
    width:100%;
  }

}