/* FONT */
/* Regular */
@font-face {
  font-family: 'SF Pro Display';
  src: url('/font/SFProDisplayRegular.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'SF Pro Display';
  src: url('/font/SFProDisplayBold.OTF') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Medium, Light, etc. */
@font-face {
  font-family: 'SF Pro Display';
  src: url('/font/SFProDisplayMedium.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
}
/* Medium, Light, etc. */
@font-face {
  font-family: 'Helvetica Neue Black';
  src: url('/font/Helvetica\ Neue\ Black.otf') format('opentype');
  font-weight: black;
  font-style: normal;
}



/* Estilos resetados */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html {
  scroll-behavior: smooth;
  
}


body {
    font-family: "SF", "SF Pro Text", "SF Pro Display", "SF Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    /* background-color: #f9f9f9;
    background-color: #0e0e0e; */
    color: #333;
    line-height: 1.6;
    cursor: url(/cursor-azul.svg) 2 2, auto;
    background: linear-gradient(180deg, #071426 0%, #050d18 100%);

    
}
.custom-cursor {
  background: radial-gradient(circle, #2AB3FF, #005CFF);
  box-shadow: 0 0 15px #2AB3FF, 0 0 30px #005CFF;
  
}
header {
    position: relative;
    height: 250px;
    color: white;
    text-align: center;
    overflow: hidden;
    
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;

}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
}



header h1 {
    font-size: 36px;
    z-index: 1;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}
/* PARÁGRAFO */
.intro p {
    font-size: 20px;
    font-weight: 500;
    color: #cfd6ff;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
/* TÍTULO */
.intro h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 28px;

    background: linear-gradient(180deg, #ffffff 0%, #b8c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* TÍTULO */

.intro2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px 10px 0;
}
.intro2 h2 {
    justify-content: center;
    text-align: center;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 28px;
    align-items: center;

    background: linear-gradient(180deg, #ffffff 0%, #b8c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.intro2 p {
    font-size: 20px;
    font-weight: 500;
    color: #cfd6ff;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.3;
}
.intro2 svg{
    width: 80px;
    height: 40px;
    color: #00c3ff;
}

 .highlight2 {
  background: linear-gradient(
    120deg,
    #0099ff 0%,
    #8f7bff 40%,
    #00fff2 50%,
    #8f7bff 60%,
    #0099ff 100%
  );

  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: sweepLight 5s linear infinite;
}

@keyframes sweepLight {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* TÍTULO */
.intro h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 28px;

    background: linear-gradient(180deg, #ffffff 0%, #b8c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
  background: linear-gradient(
    120deg,
    #0099ff 0%,
    #8f7bff 40%,
    #00fff2 50%,
    #8f7bff 60%,
    #0099ff 100%
  );

  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: sweepLight 5s linear infinite;
}

@keyframes sweepLight {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* RESPONSIVO */
@media screen and (max-width: 768px) {
    .intro h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .intro p {
        font-size: 18px;
    }
}




@media screen and (max-width: 768px) {
   
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}


}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature {
    width: 100%;
    max-width: 360px;
    margin: 0 auto; /* isso força centralizar */
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.15);
    background-color: #000;
}

/* Hover */
.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
}

/* Container da imagem */
.feature-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center; /* centraliza melhor */
    /* filter: brightness(0.55);  */
}

/* Overlay escuro extra para legibilidade */
.feature::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 10%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 100%
    ); */
}

/* Texto */
.feature-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

.feature-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Barra azul no topo estilo da sua imagem */
.feature::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 25px;
    width: 60px;
    height: 4px;
    background: #00eaff;
    border-radius: 10px;
    z-index: 3;
}
@media (max-width: 768px) {
    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 340px;
    }
}
.cta {
    background-color: #1a73e8;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta button {
    background-color: #ffce00;
    color: #1a1a1a;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta button:hover {
    background-color: #e6b800;
}

footer {
    background: linear-gradient(180deg, #071426 0%, #050d18 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    position: relative;
    bottom: 0;
    width: 100%;

}
.footer0 p{
    padding: 0 20px;
    font-size: 12px;
    color: #6b6b6b;
}
/* ===== GARANTIA ===== */
.guarantee {
    position: relative;
    background: linear-gradient(180deg, #0c223a 0%, #081a2d 100%);
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Glow sutil atrás */
.guarantee::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(0, 180, 255, 0.08), transparent 70%);
    z-index: 0;
}

.guarantee * {
    position: relative;
    z-index: 1;
}


/* ===== IMAGEM ===== */
.guarantee img {
    width: 140px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0, 180, 255, 0.4));
}


/* ===== TÍTULO ===== */
.guarantee h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}


/* ===== TEXTO ===== */
.guarantee p {
    font-size: 18px;
    font-weight: 400;
    color: #9bbcd1;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.single-offer {
    background-color: #002f6c;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    border-radius: 16px;
}
/* PRICES 1 */
.offer-box {
    background-color: #fff8cc;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffc107;
}

.offer-box h3 {
    background-color: #002f6c;
    color: white;
    padding: 10px;
    font-size: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.offer-box h2 {
    font-size: 20px;
}

.offer-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.offer-box2 {
    display: flex !important;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column !important;
    align-items: flex-start;
}

.price {
    /* font-size: 36px; */
    font-weight: 900;
    color: #333;
    margin: 0;
}

.info {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.shipping {
    color: green;
    font-size: 14px;
    margin-bottom: 5px;
}
.shipping.removed {
    color: #999;               /* cinza */
    text-decoration: line-through;
    opacity: 0.7;
}
.shipping.removed::before {
    content: "❌ ";
}
.btn-buy {
    display: inline-block;
    padding: 14px 60px;
    background-color: #ffc107;
    color: #000;
    font-weight: 900;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-buy:hover {
    background-color: #e0a800;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .intro h2 {
        font-size: 33px;
        line-height: 33px;
    }

    .cta button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 22px;
    }

    .intro h2 {
        font-size: 30px;
    }

    .intro p {
        font-size: 15px;
        padding: 0 10px;
    }

    .cta button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .feature h3 {
        font-size: 20px;
    }

    .feature p {
        font-size: 14px;
    }
}


.seguranca{
    margin-top: 15px;
}
.seguranca img{
    width: 300px;
}

.offers-container {
    display: flex;
    /* flex-wrap: wrap;  */
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.offer-box {
    margin-top: 50px;
    background-color: #fff8dc;
    border: 3px solid gold;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}


.offer-box.basic {
    max-width: 350px;
    height: 100%;
    background-color: #fefefe;
    border-color: #ccc;
    opacity: 0.9;
}

.offer-box.full {
    margin-top: 50px;
    border-color: #ffd700;
    background-color: #fffde7;
    max-width: 350px;
    height: 100%;
    background-color: #fefefe;
    border-color: #ccc;
    opacity: 0.9;
}

.price .small {
    font-size: 16px;
    vertical-align: middle;
}

.price .big1 {
    font-size: 38px;
    letter-spacing: -.05em;
    font-weight: bold ;
}
.big{
    font-size: 38px;
    font-family: 'Helvetica Neue Black';
    letter-spacing: -.05em;
    font-weight: bold;
}

.info {
    font-size: 16px;
    color: #444;
    margin: 5px 0;
}

.btn-buy {
    display: block;
    background-color: #ff7f00;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
}

.seguranca img {
    margin-top: 10px;
    width: 300px;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }
}

.tag-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e60000;
    color: white;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px 0 8px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Para garantir que a oferta tenha position relativa */
.offer-box.full {
    position: relative;
}
 
  .video-heading {
    font-size: 2.5em;
    text-align: center;
    margin: 40px auto 20px;
    max-width: 900px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-in-out;
    line-height: 1.2em;
  }
  .video-heading h2{
    font-size: 2rem;
    color: #111;
    font-weight: 900 !important;

  }
  .headingSt{
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @media screen and (max-width: 768px) {
    .video-heading {
        line-height: 35px;
    }
}
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== BONUS SECTION ===== */
.bonus-section {
    position: relative;
    background: linear-gradient(180deg, #0c223a 0%, #081a2d 100%);
    padding: 80px 30px;
    text-align: center;
    border-radius: 20px;
    margin: 80px auto;
    max-width: 1200px;
    border: 1px solid rgba(0, 180, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Glow sutil interno */
.bonus-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(0,180,255,0.08), transparent 70%);
    z-index: 0;
}

.bonus-section * {
    position: relative;
    z-index: 1;
}


/* ===== CLIENT INFO ===== */
.clientbox {
    margin: 30px auto 0;
    max-width: 1000px;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.client img {
    width: 40px;
    filter: brightness(0) saturate(100%) invert(62%) sepia(87%) saturate(400%) hue-rotate(170deg);
}

.client p {
    font-size: 16px;
    color: #9bbcd1;
}


/* ===== TITULO ===== */
.bonus-title {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .bonus-title {
        line-height: 45px;
    }
}


/* ===== SUBTITULO ===== */
.bonus-subtitle {
    font-size: 1.1rem;
    color: #9bbcd1;
    margin-bottom: 50px;
}


/* ===== LISTA ===== */
.bonus-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


/* ===== ITEM CARD ===== */
.bonus-item {
    max-width: 520px;
    background: linear-gradient(180deg, #0f2742 0%, #091c30 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 180, 255, 0.15);
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bonus-item:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(0, 180, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}


/* ===== TITULO DO ITEM ===== */
.bonus-item h3 {
    font-size: 1.2rem;
    color: #00c3ff;
    margin-bottom: 12px;
}


/* ===== TEXTO DO ITEM ===== */
.bonus-item p {
    font-size: 0.95rem;
    color: #9bbcd1;
    line-height: 1.6;
}


/* ===== VALOR ===== */
.bonus-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00c3ff;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.25);
}

.bonus-value s {
    color: #6b7d8f;
    font-weight: 400;
}

  /* --------------------VIDEO  */
 
/* ========================= */
/* SEÇÃO FUNDO GRID VINTAGE  */
/* ========================= */

.roxoback {
    position: relative;
    width: 100%;
    /* margin-left: calc(-50vw + 50%); */
    padding: 100px 0;
    overflow: hidden;
}
@media (max-width: 768px) {
    
    .roxoback {
        padding: 40px 0;
        overflow: hidden; /* evita estouro */
    }

    .roxoback::before,
    .roxoback::after {
        display: none;
    }

    .container-video1 {
        background-image: none !important;
    }
}

/* GRID FULL WIDTH */
.roxoback::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 180, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.08) 1px, transparent 1px);
        

    background-size: 70px 70px;
    opacity: 0.7;

    animation: gridMove 40s linear infinite;
    pointer-events: none;
}

/* VINHETA SUAVE */
.roxoback::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
    circle at center,
    transparent 60%,
    #071426 100%
);

    pointer-events: none;
}

/* ========================= */
/* CONTAINER CENTRAL         */
/* ========================= */

.container-video1 {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* ========================= */
/* VIDEO BOX                 */
/* ========================= */
.feature-content h3 {
    color: #00eaff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;

    border-radius: 20px;
    overflow: hidden;

    border: 1px solid rgba(42,179,255,0.25);

    box-shadow:
        0 0 60px rgba(42,179,255,0.25),
        0 0 100px rgba(255, 0, 0, 0.15);

    /* transition: all 0.3s ease; */
    z-index: 3;
}


.video-container video {
    width: 100%;
    height: 100%;
    display: block;
}
  
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    width: 80px;
    height: 80px;
  }
  
  .play-icon svg {
    width: 80px;
    height: 80px;
    transition: transform 0.2s;
  }
  
  .play-icon:hover svg {
    transform: scale(1.1);
  }
  
@media (max-width: 768px) {
    .video-container {
        box-shadow: 0 0 7px rgba(56, 110, 180, 0.5);
    }
}


/* ----------------- VÍDEO 2 VIP  ----------------------------- */


.roxoback2 {
    position: relative;
    width: 100%;
    /* margin-left: calc(-50vw + 50%); */
    padding: 100px 0;
    overflow: hidden;
}
@media (max-width: 768px) {
    
    .roxoback2 {
        padding: 40px 0;
        overflow: hidden; /* evita estouro */
    }

    .roxoback2::before,
    .roxoback2::after {
        display: none;
    }

    .container-video12 {
        background-image: none !important;
    }
}

/* GRID FULL WIDTH */
.roxoback2::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 180, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.08) 1px, transparent 1px);
        

    background-size: 70px 70px;
    opacity: 0.7;

    animation: gridMove 40s linear infinite;
    pointer-events: none;
}

/* VINHETA SUAVE */
.roxoback2::after {
    content: "";
    position: absolute;
    inset: 0;

    

    pointer-events: none;
}

/* ========================= */
/* CONTAINER CENTRAL         */
/* ========================= */

.container-video12 {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* ========================= */
/* VIDEO BOX                 */
/* ========================= */
.feature-content2 h3 {
    color: #00eaff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}
.video-container2 {
    position: relative;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;

    border-radius: 20px;
    overflow: hidden;

    border: 1px solid rgba(42,179,255,0.25);

    box-shadow:
        0 0 60px rgba(42,179,255,0.25),
        0 0 100px rgba(255, 0, 0, 0.15);

    /* transition: all 0.3s ease; */
    z-index: 3;
}


.video-container2 video {
    width: 100%;
    height: 100%;
    display: block;
}
  
  .play-icon2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    width: 80px;
    height: 80px;
  }
  
  .play-icon2 svg {
    width: 80px;
    height: 80px;
    transition: transform 0.2s;
  }
  
  .play-icon2:hover svg {
    transform: scale(1.1);
  }
  
@media (max-width: 768px) {
    .video-container2 {
        box-shadow: 0 0 7px rgba(56, 110, 180, 0.5);
    }
}


/* ------------------------------------------ */


  /* ---------------------- PERGUNTAS FREQUÊNTES */

  /* CSS */
/* ===== FAQ CONTAINER ===== */
.faq {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

/* ===== TÍTULO ===== */
.faq h2 {
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  position: relative;
}

.faq h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00c3ff, #0099ff);
  margin: 15px auto 0;
  border-radius: 3px;
}


/* ===== ITEM ===== */
.faq-item {
  margin-bottom: 20px;
  background: linear-gradient(180deg, #0c223a 0%, #081a2d 100%);
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Hover suave */
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Quando aberto */
.faq-item[open] {
  border: 1px solid rgba(0, 180, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.15);
}


/* ===== SUMMARY ===== */
.faq-item summary {
  font-size: 1.1em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  padding: 18px 25px;
  display: flex;
  align-items: center;
}

/* Remove marcador padrão */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Ícone */
.faq-item summary::before {
  content: "›";
  font-size: 1.4em;
  color: #00c3ff;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

/* Rotação quando aberto */
.faq-item[open] summary::before {
  transform: rotate(90deg);
}


/* ===== TEXTO ===== */
.faq-item p {
  margin: 0;
  padding: 0 25px 20px 55px;
  color: #9bbcd1;
  line-height: 1.6;
  font-size: 0.95em;
}
/* ALERTA */

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  @keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(0,255,120,0.7), 0 0 15px rgba(0,255,120,0.4); }
    100% { box-shadow: 0 0 12px rgba(0,255,120,1), 0 0 25px rgba(0,255,120,0.8); }
  }

  .notificacao-neon {
    position: fixed;
    left: 25px;
    bottom: 25px;
    padding: 16px 22px;
    border-radius: 14px;
    background: rgba(0, 20, 0, 0.65);
    border: 1px solid rgba(0, 255, 120, 0.5);
    backdrop-filter: blur(6px);
    color: #00ff8a;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: none;
    z-index: 9999;
    animation: pulseGlow 1.4s infinite alternate;
  }

  .notificacao-neon.show {
    display: block;
    animation: slideUp 0.4s ease-out, pulseGlow 1.4s infinite alternate;
  }


  /* Botão pagamento */
  /* ===== CONTAINER ===== */
.btn-container {
    max-width: 1000px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
}


/* ===== BOTÃO ÂNCORA ===== */
.cta-botao {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, #00c3ff, #0099ff);
    color: #001220;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 170, 255, 0.45);
}

/* Hover */
.cta-botao:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 170, 255, 0.65);
}



/* ------------------ 3 CHECKOUT ------------------ */

/* ===== CONTAINER ===== */
.offers-container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
}


/* ===== CARD PRINCIPAL ===== */
.offer-box3 {
    position: relative;
    background: linear-gradient(180deg, #0c223a 0%, #081a2d 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 180, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}
.offer-box3.full3 {
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.3),
        0 0 40px rgba(0, 180, 255, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

.offer-box3:hover {
    transform: translateY(-6px);
}


/* ===== TAG POPULAR ===== */
.tag-popular3 {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(90deg, #00c3ff, #0099ff);
    color: #001220;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 30px;
}


/* ===== TÍTULO ===== */
.offer-box3 h3 {
    background: rgba(0, 180, 255, 0.1);
    color: #00c3ff;
    padding: 8px 20px;
    font-size: 1.3em;
    letter-spacing: 2px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 180, 255, 0.3);
}


/* ===== SUBTÍTULO ===== */
.offer-box3 h2 {
    font-size: 20px;
    font-weight: 400;
    color: #8fbcd6;
    margin-bottom: 15px;
}


/* ===== BLOCO DE PREÇO ===== */
.offer-box33 {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 20px 0;
}


/* ===== PREÇO ===== */
.price3 {
    margin: 0;
}

.price3 .small3 {
    font-size: 18px;
    color: #8fbcd6;
}

.price3 .big3 {
    font-size: 3.6em;
    font-weight: 900;
    background: linear-gradient(90deg, #00c3ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}


/* ===== INFO ABAIXO DO PREÇO ===== */
.info3 {
    font-size: 15px;
    color: #9bbcd1;
    margin-top: 0px;
}


/* ===== FRETE / EXTRA ===== */
.shipping3 {
    color: #00c3ff;
    font-size: 14px;
    margin-bottom: 5px;
}


/* ===== BOTÃO ===== */
.btn-buy3 {
    display: block;
    background: linear-gradient(90deg, #00c3ff, #0099ff);
    color: #001220;
    text-align: center;
    font-weight: 800;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
}

.btn-buy3:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.6);
}


/* ===== IMAGEM ===== */
.offer-box3 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/* ===== SEGURANÇA ===== */
.seguranca3 {
    margin-top: 20px;
}

.seguranca3 img {
    width: 250px;
    opacity: 0.8;
}


/* ===== RESPONSIVO ===== */
@media screen and (max-width: 768px) {
    .offers-container3 {
        flex-direction: column;
        align-items: center;
    }

    .price3 .big3 {
        font-size: 42px;
    }
}

@media screen and (max-width: 480px) {
    .offer-box3 {
        padding: 35px 20px;
    }

    .price3 .big3 {
        font-size: 36px;
    }

    .btn-buy3 {
        font-size: 14px;
        padding: 14px;
    }
}

.premium-highlight {
    background: rgba(0, 224, 255, 0.08);
    border: 1px solid rgba(0, 224, 255, 0.3);
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
}
.premium-highlight.removed .vip-only {
    text-decoration: line-through;
    color: #aaa;
}

.premium-highlight.removed {
    opacity: 0.8;
    
}

/* 2 premium */

.premium-highlight1 {
    background: rgba(0, 224, 255, 0.08);
    border: 1px solid rgba(0, 224, 255, 0.3);
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    width: 100%;
}
.premium-highlight1.removed .vip-only {
    text-decoration: line-through;
    color: #aaa;
}

.premium-highlight1.removed {
    opacity: 0.8;
    
}