/* === CONFIGURAÇÕES GLOBAIS E VARIÁVEIS === */
:root {
    --gradient: linear-gradient(90deg, #A770EF 0%, #CF8BF3 50%, #FDB99B 100%);
    --primary-color-start: #A770EF;
    --primary-color-end: #FDB99B;
    --bg-color: #0D0D0F;
    --surface-color: #1A1A1A;
    --surface-hover-color: #212124;
    --border-color: #2a2a2e;
    --text-primary: #FFFFFF;
    --text-secondary: #BDBDBD;
    --max-width: 1280px;
    --gap: 20px;
    --border-radius: 8px;
    --section-padding: 6em 0;
}
@media (max-width: 1024px) {
    :root { --section-padding: 3em 1.125em; --gap: 10px; }
    .card{ padding: 1em !important; }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body, html {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    line-height: 1.3;
    text-wrap: balance;
    overflow-x: hidden !important;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/montserrat-v25-latin-600.woff2') format('woff2');
  font-display: swap; /* Isso evita FOIT (Flash of Invisible Text) */
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/montserrat-v25-latin-300.woff2') format('woff2');
  font-display: swap; /* Isso evita FOIT (Flash of Invisible Text) */
}

/* Scrollbar (Desktop) */
@media (min-width: 1024px){
  * { scrollbar-width: thin; scrollbar-color: var(--border-color) var(--bg-color); }
  *::-webkit-scrollbar { width: 8px; }
  *::-webkit-scrollbar-track { background: var(--bg-color); }
  *::-webkit-scrollbar-thumb { background-color: var(--border-color); border-radius: 4px; }
}

/* === TIPOGRAFIA E ELEMENTOS BASE === */
h1, h2, h3, h4, strong {
    font-weight: 600;
    color: var(--text-primary);
}
@media(max-width: 767px){
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    p, li { font-size: 1rem; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.125rem; } 
    h4 { font-size: 1.1rem; } 
    p, li { font-size: 1.1rem; } 
}
@media (min-width: 1025px) and (max-width: 1366px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }  
    p, li { font-size: 1.1rem; }
    :root {--max-width:80vw; --gap: 10px; }
    .card{ padding: 1.5em !important; }
}

@media (min-width: 1367px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 2.1rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.125rem; }
    p, li { font-size: 1.125rem; }
}
a { color: var(--primary-color-start); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary-color-end); }
ul, ol{
    padding-left: 20px;
}
li {
    margin-bottom: 0.5rem;
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section { padding: var(--section-padding); }
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
}
.title-wrapper {
    text-align: center;
    max-width: 850px;
    user-select: none !important;
}
.hero__description{
    user-select: none !important;
}
/* === BOTÕES === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(167, 112, 239, 0.2);
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 25px rgba(207, 139, 243, 0.3);
    color: var(--text-primary);
}
.btn--secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}
.btn--secondary:hover {
    background-color: var(--surface-color);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
    color: var(--text-primary);
}
.btn--large { padding: 20px 40px; font-size: 1rem; width: 100%; max-width: 450px; }

/* === CABEÇALHO FIXO === */
.main-header {
    position: fixed;
    top: 20px;
    transform: translate(-50%);
    left: 50%;
    width: calc(100% - 2.250em);
    max-width: var(--max-width);
    border-radius: var(--border-radius);
    z-index: 1000;
    padding: 0 1.125em;
    overflow: hidden;
    box-shadow:
        0 4px 4px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.header-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 4;
}
.effect {
    position: absolute;
    z-index: 0;
    inset: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    filter: url(#glass-distortion);
    overflow: hidden;
}
.tint {
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 15, 0.5);
}
.shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow:
        inset 1px 1px 4px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}
.logo-header { 
    height: 30px; 
    width: auto;
    transition: all 0.3s ease;
}
.main-nav ul { 
    list-style: none; 
    display: flex; 
    gap: var(--gap); 
    padding-top: 10px;
}
.main-nav a { 
    font-size: 1rem; 
    color: var(--text-secondary); 
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}
.main-nav a:hover { 
    color: var(--text-primary);
    transform: translateY(-2px);
}
.main-nav a:hover::after {
    width: 100%;
}
.btn--header { 
    padding: 12px 24px; 
    border-radius: 8px;
    background: var(--gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(167, 112, 239, 0.2);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.btn--header:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(207, 139, 243, 0.3);
    color: var(--text-primary);
}

/* === SEÇÃO HERO === */
.hero {
    padding-top: calc(80px + 4%); /* Offset for header */
    background: radial-gradient(circle at 50% 0%, rgba(167, 112, 239, 0.1), transparent 40%);
}
.hero-container { text-align: center; }
.hero__title { max-width: 1020px; }
.hero__description { max-width: 950px; }
.hero__checklist {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: var(--gap);
    flex-wrap: wrap;
}
.hero__checklist li { display: flex; align-items: center; }
.hero__buttons { display: flex; justify-content: center; margin-top: 1rem; width: 100% }
/* =================================================================== */
/* PLAYER DE VSL (MOCKUP E IFRAME)
/* =================================================================== */
.hero__player-mockup {
    /* Layout da moldura */
    margin-top: 1rem;
    max-width: 1050px;
    width: 80%;
    aspect-ratio: 16 / 9;
    
    /* Estilo da moldura */
    border-radius: 8px;
    border: 1px solid var(--bg-color);
    background: var(--surface-color);
    outline: 2px solid var(--border-color);
    outline-offset: 0.7rem;

    /* Propriedades para conter o iframe */
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    align-items: center
}
.vsl-iframe {
    /* Faz o iframe preencher a moldura */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Estilos para lazy loading */
    .lazy {
      opacity: 0;
      transition: opacity 0.4s ease;
      background: #f0f0f0;
    }
    
    .lazy.loaded {
      opacity: 1;
    }
    
    /* Placeholder para imagens */
    .img-placeholder {
      position: relative;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
      border-radius: 8px;
      overflow: hidden;
    }
    
    .img-placeholder::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
      animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
/* === CARD & GRIDS === */
.card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: var(--gap);
    flex-direction: column;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.card:hover { transform: translateY(0px); background-color: var(--surface-hover-color); }
.card__icon { width: 70px; height: 70px; margin-bottom: -10px; }
.card__title { margin-top: 0.5rem; }
.benefits-grid, .features-grid {
    width: 100%;
    display: grid;
    gap: var(--gap);
}
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* === SEÇÃO "PARA QUEM É" === */
.for-whom-section { background-color: var(--surface-color); }
.for-whom-container {
    flex-direction: row;
    align-items: center;
}
.for-whom-content { flex: 1; margin-top: -10px; }
.for-whom-content .card{ flex: 1; max-width: 600px; text-wrap: wrap}
.for-whom-image { flex: 1; width: 100%; max-width: 600px; margin-bottom: 2rem; }
.for-whom-image img { width: 100%; }
.for-whom-title.icon-list { margin-bottom: 1rem !important; max-width: 600px; text-wrap: wrap}
.icon-list { list-style: none; margin-top: 1rem; padding: 0; }

/* =================================================================== */
/* 7. GRÁFICO INTERATIVO DE CONVERSÃO
/* =================================================================== */

.interactive-graph-section {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    padding: var(--section-padding);
}

.graph-text-content {
    flex: 1;
}

.graph-text-content .icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.emoji {
    font-size: 1.5rem;
}

.graph-visual-content {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-graph-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
}

.conversion-graph-svg {
    width: 100%;
    height: auto;
    overflow: visible; /* Importante para o brilho da bolinha */
}

/* Animação de "desenho" da linha */
.conversion-line {
    fill: none;
    stroke: url(#graph-gradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.conversion-fill {
    fill: url(#graph-fill-gradient);
}

.grid-lines line {
    stroke: var(--border-color);
    stroke-width: 1;
    stroke-dasharray: 2 4; /* Linhas tracejadas */
}

/* Elementos interativos */
.interactive-elements {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.interactive-graph-container:hover .interactive-elements {
    opacity: 1;
}
.tracker-ball {
    fill: #fff;
    stroke: url(#graph-gradient);
    stroke-width: 2;
}
.tracker-line {
    stroke: var(--border-color);
    stroke-width: 1;
}

/* Tooltip */
.graph-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    transform: translate(-50%, -120%); /* Centraliza acima da bolinha */
}
.interactive-graph-container:hover .graph-tooltip {
    opacity: 1;
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.5rem 0 0.5rem;
}

/* Adaptação do gráfico para a seção "For Whom" */
.for-whom-image .interactive-graph-container {
    max-width: none; /* Remove o max-width para preencher o contêiner */
    width: 100%;
}

/* Media Query para empilhar em telas menores */
@media (max-width: 900px) {
    .interactive-graph-section {
        flex-direction: column;
    }
}

/* === SEÇÃO DEPOIMENTOS (SWIPER) === */
.swiper {
    width: 100%;
    padding-bottom: 3rem !important; /* Space for pagination */
    cursor: grab;
}
.swiper:active { cursor: grabbing; }
.swiper-slide { height: auto; }
.swiper-wrapper {margin-left: 10px; }
.testimonial-quote { font-size: 1.1rem; font-style: italic; flex-grow: 1; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.author-name { font-weight: 600; color: var(--text-primary); }
.author-title { font-size: 0.9rem; }
.swiper-slide { margin-right: 20px !important; }
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.swiper-pagination-bullet { background-color: var(--text-secondary) !important; transition: all 0.5s !important; margin: 2px !important }
.swiper-pagination-bullet-active { width: 20px !important; border-radius: 3px !important; background: var(--gradient) !important; transition: all 0.5s !important; }

/* === SEÇÃO OFERTA E GARANTIA === */
.offer-section { background: radial-gradient(circle at 50% 20%, rgba(167, 112, 239, 0.08), transparent 50%); }
.offer-container {
    width: 100%;
    max-width: 1050px;
    flex-direction: row;
    align-items: stretch;
}
.offer-box {
    flex: 1.2;
    background: var(--surface-color);
    border: 1px solid var(--primary-color-start);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: flex;
    gap: var(--gap);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(167, 112, 239, 0.15);
    position: relative;
    overflow: hidden;
}
.offer-tag {
    position: absolute;
    top: 50px;
    right: -50px;
    background: var(--gradient);
    color: var(--text-primary);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}
.price-strikethrough { text-decoration: line-through; color: var(--text-secondary); }
.price-display {
    font-size: 5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.price-display span:first-child { font-size: 1.8rem; vertical-align: top; }
.price-display span:last-child { font-size: 1.5rem; color: var(--text-secondary); }
.annual-offer { font-size: 1.1rem; padding-bottom: 1rem; }
.offer-checklist { list-style: none; margin: 1rem 0; text-align: left; width: 100%; max-width: 380px; }
.offer-checklist li { display: flex; align-items: center; margin-bottom: 1rem; gap: var(--gap) }
.payment-methods { max-width: 350px; width: 100%; height: auto; }

.guarantee-bonus-box { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: var(--gap);}
.guarantee-box, .bonus-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem; 
}
.guarantee-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
}
.guarantee-seal { width: 100%; height: auto; max-width: 250px; max-height: auto; }

/* === SEÇÃO SOBRE NÓS === */
.about-title {max-width: 400px; }
.about-container { flex-direction: row; align-items: center; text-wrap: wrap }
.about-image { flex: 1; max-width: 528px; }
.about-image img { width: 100%; border-radius: var(--border-radius); }
.about-content { flex: 1; }
.about-content p { margin-bottom: 1rem; }
#about-title {margin-bottom: 20px; }

/* === SEÇÃO FAQ === */
.faq-container { max-width: 1050px; }
.accordion-wrapper { width: 100%; }
.accordion {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--surface-color);
  transition: background-color 0.3s;
}
.accordion:hover { background-color: var(--surface-hover-color); }
.accordion-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gradient);
  transition: transform 0.4s ease;
}
.accordion-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion-icon::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.accordion.active .accordion-icon { transform: rotate(135deg); }
.accordion-question{ font-size: 1.1rem; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding: 2rem; }
.accordion.active .accordion-content { border-top: 1px solid var(--border-color); }

/* === FINAL CTA === */
.final-cta-section {
    background: var(--gradient);
    color: var(--text-primary);
}
.final-cta-container { text-align: center; }
.final-cta-container h2, .final-cta-container p { color: var(--text-primary); }
.final-cta-container .gradient-text { -webkit-text-fill-color: initial; background: none; }
.final-cta-container .btn--primary {
    background: var(--text-primary);
    color: var(--primary-color-start);
    box-shadow: 0 4px 20px rgba(0,0,0, 0.2);
}
.final-quote { margin-top: 2rem; font-style: italic; opacity: 0.9; }

/* === RODAPÉ === */
.logo-footer { 
    height: 30px; 
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.footer { background-color: var(--surface-color); padding: 4em 2em 2em; border-top: 1px solid var(--border-color); }
.footer-container { gap: var(--gap); }
.footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
}
.footer-logo { height: 35px; margin-bottom: 1rem; }
.footer ul { list-style: none; padding-left: 0px; margin-top: 1em; }
.footer ul li { margin-bottom: 0.5rem; }
.footer a, .footer p { font-size: 0.95rem; color: var(--text-secondary); }
.footer a:hover { color: var(--text-primary); }
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    margin-top: 2rem;
}
.footer-social ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--gap);
}

.footer-social li {
  background-color: rgba(26, 26, 26, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 100%;
  transition: 0.3s;
}

.footer-social li:hover {
  background-color: var(--surface-hover-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.footer-social li a {
  display: inline-block; 
  padding: 10px 10px 5px 10px;
}

.footer-social li:hover img {
  transition: transform 0.3s ease;
}

.security-info { font-size: 0.9rem; }

/* === BOTÃO WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* === ANIMAÇÕES DE ENTRADA === */
html {
    scroll-behavior: auto !important;
}
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

.up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.up.active {
    opacity: 1;
    transform: translateY(0);
}

.page{
    padding: 4em 1.125em;
    align-items: flex-start;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}
/* Animação do hambúrguer para X */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === PAINEL MENU MOBILE (SEPARADO DO HEADER) === */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    padding-top: 6em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
    opacity: 0;
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.mobile-nav-panel.active .mobile-menu-close {
    opacity: 1;
    transform: rotate(0deg);
    transition-delay: 0.2s;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
    background: var(--primary-color-start);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 ! important;
}

.mobile-nav a {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
}

.mobile-nav-panel.active .mobile-nav a {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mobile-nav a:hover {
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }

.btn--mobile-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    background: var(--gradient);
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    opacity: 0;
}

.mobile-nav-panel.active .btn--mobile-nav {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.btn--mobile-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 25px rgba(207, 139, 243, 0.3);
    color: var(--text-primary);
}

/* === ANIMAÇÕES === */
@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset das animações quando o menu fecha */
.mobile-nav-panel:not(.active) .mobile-nav a,
.mobile-nav-panel:not(.active) .btn--mobile-nav,
.mobile-nav-panel:not(.active) .footer-social,
.mobile-nav-panel:not(.active) .logo-header-mob {
    opacity: 0;
    animation: none;
}

/* === MEDIA QUERIES PARA RESPONSIVIDADE === */
@media (max-width: 1024px) {
    .main-header {
    top: 10px;
    padding: 0 1em;
}
.hero__player-mockup {
    width: 100%;
}
.emoji {
    font-size: 1.3rem;
}
.page{
    padding: 3em 0.60em 2em 0.60em;
    align-items: flex-start;
}
.header-container {
    height: 60px;
}
.logo-header-mob {
    position: absolute;
    top: 26px;
    left: 20px;
    height: 30px; 
    width: auto;
    transition: all 0.3s ease;
}

.for-whom-container, .offer-container, .about-container { flex-direction: column; }
.for-whom-image { order: -1; }
.offer-box { max-width: 600px; width: 100%; padding: 1rem; }
.guarantee-bonus-box { max-width: 600px; width: 100%; }
.guarantee-box, .bonus-box { padding: 1rem; }
.bonus-list li { margin-bottom: 0rem; }
.accordion-header { padding: 1rem; }
.accordion-content p {padding: 1rem; }
.footer-top { grid-template-columns: 1fr 1fr; }
.footer-about { grid-column: 1 / -1; }
.main-nav { display: none; }
.btn--header { display: none; }
.mobile-menu-toggle { display: flex; }
.footer-social li { margin-top:0em; }
}

@media (max-width: 767px) {
.btn--header { display: none; }
.hero { padding-top: calc(60px + 2em); }
.hero__checklist { flex-direction: column; align-items: flex-start; font-size: 0.9rem; gap: 0; padding: 0; }
.hero__buttons { flex-direction: column; align-items: stretch; justify-content: center; width:100% }
.btn { width: 100%; max-width: 100%; }
.benefits-grid .card { text-align: center; align-items: center; }
.offer-box {width: 100%; padding: 4rem 1rem 1.5rem 1rem; }
.offer-tag {position: absolute; top: 0; right: 0; left: 0; width: 100%; background: var(--gradient); color: var(--text-primary); padding: 8px 40px; transform: rotate(0deg); font-size: 1rem; }
.annual-offer { font-size: 1rem; padding-bottom: 0rem; }
.footer-top { grid-template-columns: 1fr; gap: var(--gap) }
.footer-bottom { flex-direction: column; gap: var(--gap); text-align: center; margin-top: 3em;}
.btn--header {padding: 10px 16px; font-size: 0.9rem; }
.mobile-nav a { font-size: 1.3rem; }
.mobile-nav ul { gap: var(--gap); padding: 0 ! important; }
}    