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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Imagens responsivas globais */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight {
    color: #C8B273;
}

.hero-description {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.cta-button{
    background: linear-gradient(90deg,#00ff00,#00c800);
    color:#000;
    font-weight:800;
    font-size:1.1rem;

    padding:20px 55px;
    border:none;
    border-radius:10px;

    cursor:pointer;
    transition:.3s;

    box-shadow:
        0 10px 25px rgba(0,255,0,.35),
        0 0 0 2px rgba(0,255,0,.15);

    text-transform:uppercase;

    width:100%;
    max-width:520px;

    display:inline-block;
    text-align:center;
}

.cta-button:hover{
    transform:translateY(-3px);
    box-shadow:
        0 15px 35px rgba(0,255,0,.45),
        0 0 0 2px rgba(0,255,0,.2);
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #C8B273;
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.black-friday-badge {
    background: #8B0000;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}

.badge-text {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.badge-subtitle {
    font-size: 0.7rem;
    margin-top: 5px;
    color: #fff;
    line-height: 1.2;
}

/* Secret Section */
.secret-section {
    background: #0a0a0a;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-text {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #C8B273;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #C8B273;
    margin-bottom: 10px;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.pillar-text {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: #000;
    padding: 80px 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.check-icon {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: 900;
    min-width: 30px;
}

.benefit-item p {
    font-size: 1rem;
     color: rgb(255, 255, 255);
    line-height: 1.6;
    margin: 0;
}

.cta-text {
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    margin: 40px 0 30px;
}

/* Revenue Section */
.revenue-section {
    background: #0a0a0a;
    padding: 80px 20px;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.screenshot-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    background: #000;
    padding: 80px 20px;
}

.brand-name-large {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-euro {
    display: block;
    width: 100%;
    height: auto;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, #000 100%);
    pointer-events: none;
}

.about-text {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.about-text strong {
    color: #C8B273;
    font-weight: 700;
}

.video-container {
            border: 5px solid #fff; /* Apenas para você ver onde o vídeo está */
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }


/* Footer */
.footer-section {
    background: #000;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-text.small {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .brand-name {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* Botões CTA Mobile */
    .cta-button {
        font-size: 0.95rem;
        padding: 16px 30px;
        max-width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
    }

    .pt-10 {
        padding-top: 20px;
    }

    .mt-10 {
        margin-top: 20px;
    }

    /* Imagens do Hero Mobile */
    .hero-section .row img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .hero-section .col-6 {
        padding: 5px;
        margin-bottom: 10px;
    }

    .hero-section .row {
        margin: 0;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Pillar Items Mobile */
    .pillar-item {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .pillar-number {
        font-size: 2rem;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    .pillar-text {
        font-size: 0.9rem;
    }

    /* Benefit Items Mobile */
    .benefit-item {
        padding: 15px;
        margin: 15px 0;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .check-icon {
        font-size: 1.2rem;
        min-width: 25px;
    }

    /* Testimonial Box Mobile */
    .testimonial-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .testimonial-content {
        text-align: center;
    }

    .black-friday-badge {
        margin: 20px auto 0;
    }

    /* Video/Iframe Mobile */
    .video-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
}

    /* Screenshots Mobile */
    .screenshots-container {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-img {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .revenue-section .row .col-3,
    .revenue-section .row .col-4,
    .revenue-section .row .col-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 50px 15px;
    }

    .brand-name-large {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .about-img-wrapper {
        margin-bottom: 30px;
    }

    /* Sections Padding Mobile */
    .secret-section,
    .benefits-section,
    .revenue-section {
        padding: 50px 15px;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 30px 15px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-text.small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 14px 25px;
    }

    .hero-section {
        padding: 40px 10px;
    }
}

@media (max-width: 992px) {
    .about-img {
        margin-bottom: 40px;
    }

    .about-section .row {
        flex-direction: column;
    }

    .about-section .col-lg-5 {
        margin-bottom: 30px;
    }
}

/* Classe para wrapper de vídeo responsivo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* modal bonito e sem scroll feio */
.modal-clean{
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  overflow:hidden;
  position:relative;
}

.modal-x{
  position:absolute;
  top:10px;
  right:12px;
  z-index:10;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  line-height:36px;
  cursor:pointer;
}

#formModal .modal-body{
  overflow:hidden;
}

#formModal iframe{
  width:100%;
  height:100%;
  border:0;
}

.is-embed .cookie-banner,
.is-embed #cookie-banner,
.is-embed #cookieconsent,
.is-embed .cookie-consent,
.is-embed .cc-window,
.is-embed .cc-banner {
  display: none !important;
}

.is-embed #gpc-lgpd {
  display: none !important;
}


html.is-embed #gpc-lgpd { 
  display: none !important; 
}


/* Modal estilo print */
.modal-lead{
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:visible;
  position:relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.modal-header-lead{
  padding: 28px 26px 10px 26px;
  text-align:center;
}

.modal-brand{
  font-weight:800;
  letter-spacing: 3px;
  color:#fff;
  opacity:.95;
  margin-bottom:10px;
}

.modal-title-lead{
  color:#fff;
  font-size: 20px;
  line-height: 1.2;
  margin:0 0 10px 0;
}

.modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:10;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  line-height:36px;
  cursor:pointer;
}

.lead-form{
  padding: 18px 26px 26px 26px;
}

.lead-field{
  margin-bottom: 14px;
}

.lead-input{
  width:100%;
  height: 48px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.10);
  background:#fff;
  color:#111;
  padding: 0 14px;
  outline:none;
  font-size: 15px;
}

.lead-input:focus{
  border-color: rgba(0,255,0,.45);
  box-shadow: 0 0 0 3px rgba(0,255,0,.12);
}

.lead-error{
  display:none;
  color:#ff8a8a;
  font-size: 12px;
  margin-top:6px;
}

.lead-field.is-invalid .lead-error{
  display:block;
}

.lead-submit{
  width:100%;
  height: 52px;
  border:0;
  border-radius: 10px;
  font-weight:800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00ff00 0%, #00cc00 100%);
  color:#000;
  box-shadow: 0 10px 25px rgba(0,255,0,.25);
  cursor:pointer;
  margin-top: 6px;
}

.lead-disclaimer{
  margin: 12px 0 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align:center;
}

/* Deixar o fundo do modal mais escuro */
.modal-backdrop.show {
  opacity: 0.95 !important;   /* pode testar 0.8, 0.9 etc */
  background-color: #000 !important;
}


/* não deixa o modal cortar o select */
#leadModal,
#leadModal .modal-dialog,
#leadModal .modal-content,
#leadModal .modal-body{
  overflow: visible !important;
}

/* se o modal ficar maior que a tela, quem rola é o próprio modal (bootstrap já faz isso) */
#leadModal{
  overflow-y: auto;
}

.lead-error {
  display: none;
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 6px;
}

/* ====== VALIDAÇÃO BONITA (SEM QUADRADÃO) ====== */

/* não coloca borda no container */
.lead-field.is-invalid{
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* borda e glow só no input/select */
.lead-field.is-invalid .lead-input{
  border-color: rgba(255, 59, 59, .9) !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, .14) !important;
}

/* erro pequeno e elegante */
.lead-error{
  display:none;
  margin-top:6px;
  font-size:12px;
  color: rgba(255, 120, 120, .95);
  line-height: 1.2;
}

.lead-field.is-invalid .lead-error{
  display:block;
}

.revenue-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.revenue-buttons .cta-button {
  width: 420px;
  min-height: 70px;   /* força mesma altura */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-button{
    text-decoration: none;
}

/* ===== SELECT IGUAL AO PRINT ===== */

/* remove estilos estranhos e deixa igual input */
.lead-input,
.lead-input:focus{
  -webkit-appearance: none;
  appearance: none;
}

/* só pros SELECTs */
select.lead-input{
  background-color:#fff !important;
  color:#666 !important;
  padding-right: 46px;                 /* espaço pro ícone */
  cursor: pointer;
}

/* placeholder do primeiro option */
select.lead-input:invalid{
  color:#3f3e3e !important;
}

/* seta do select (igual print, discreta) */
.lead-field{
  position: relative;
}

.lead-field select.lead-input{
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.hero-section{
  padding: 70px 30px 90px;
  position: relative;
  overflow: hidden;

  background-image:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.85) 55%, rgba(0,0,0,.95) 100%),
    url("../img/img01.jpg");

  background-size:
    cover,
    cover,
    cover;

  background-position:
    center,
    center -350px;

  background-repeat: no-repeat;
}

/* ===== AJUSTE HERO NO CELULAR ===== */
@media (max-width: 768px) {
  .hero-section{
    padding: 52px 16px 70px;
    min-height: 0;
    background-size: cover, cover, cover;
    background-position:
      center,
      center -40px,
      center -80px;
  }

  .brand-name{
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .hero-subtitle{
    font-size: .95rem;
    margin-bottom: 12px;
  }

  .hero-title{
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-description{
    font-size: .92rem;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .cta-button{
    max-width: 420px;
    width: 100%;
    padding: 16px 18px;
    font-size: .95rem;
    border-radius: 12px;
    box-shadow:
      0 10px 22px rgba(0,255,0,.28),
      0 0 0 2px rgba(0,255,0,.12);
  }

  .testimonial-box{
    margin-top: 22px;
    padding: 16px;
    gap: 12px;
  }
}

/* iPhone pequeno */
@media (max-width: 420px) {
  .hero-section{
    padding: 46px 14px 64px;
    background-position:
      center,
      center -20px,
      center -70px;
  }

  .hero-title{
    font-size: 1.5rem;
  }

  .cta-button{
    font-size: .9rem;
    padding: 14px 16px;
  }
}


/* ===== AJUSTE ESPECÍFICO PRA iPAD ===== */
/* iPad retrato/landscape (a maioria cai entre 768 e 1024) */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero-section{
    padding: 60px 24px 80px;
    background-size: cover, 900px auto, cover; /* rosto menor */
    background-position:
      center,
      center 10px,      /* sobe o rosto */
      center -120px;
  }

  .brand-name{
    font-size: 1.25rem;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
  }

  .hero-subtitle{
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-title{
    font-size: 2.05rem;   /* reduz pra não “estourar” */
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .hero-description{
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .cta-button{
    max-width: 520px;
    padding: 18px 22px;
    font-size: 1rem;
  }

  .testimonial-box{
    margin-top: 26px;
    padding: 18px;
  }
}

