:root{
    --primary-color:#F17B14;
    --anton: 'Anton', sans-serif;
}

body {
    background-color: #020817;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center; 
}

.anton { 
    font-family: 'Anton', sans-serif; 
}

.text-orange { 
    color: #F17B14; 
}

.hero-section{
    position: relative;
}

.gui_img{
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 5%;
    max-width: 550px;
    opacity: 0.5;
    transform: rotateY(180deg);
    z-index: 0;
}

@media (max-width: 1542px){
    .gui_img{
        display: none;
    }
}

.hero-section, .info-section, .modulos-vendas, .oferta-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.hero-section {
    background: linear-gradient(180deg, #020817 0%, #0a1124 100%);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.top-badge {
    background: #F17B14;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.main-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.sub-headline {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 20px auto 40px;
}

.video-placeholder, .hero-image-container {
    max-width: 800px;
    width: 90%; 
    border: 4px solid #F17B14;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 40px; 
}

.video-placeholder img, .main-hero-img { 
    width: 100%; 
    max-width: 600px;
}

.btn-principal-vendas {
    background: #F17B14;
    color: #fff;
    padding: 20px 30px;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-decoration: none;
    display: inline-block;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(241, 123, 20, 0.5);
    text-transform: uppercase;
    transition: 0.3s;
    line-height: 1.2;
    margin: 20px auto;
}

.btn-principal-vendas span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-principal-vendas:hover {
    transform: scale(1.05);
    background: #ff8c2b;
    color: #fff;
}

.vendas-card {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
    text-align: center;
    height: 100%;
    margin: 0 auto;
    transition: .3s;
}

.vendas-card:hover{
    transform: scale(1.03);
}

.lista-vendas {
    list-style: none;
    padding: 0;
    display: inline-block; 
    text-align: left;
    font-size: 1.2rem;
}

.lista-vendas li {
    margin-bottom: 15px;
}

.modulo-destaque {
    background: rgba(241, 123, 20, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #F17B14;
    max-width: 700px;
    margin: 40px auto;
}

.scroll-wrapper { 
    overflow: visible; 
    background: #01040a; 
    width: 100%;
}

.scroll-content {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

.scroll-content img { 
    width: 300px; 
    border-radius: 15px; 
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.caixa-oferta {
    background: #fff;
    color: #020817;
    padding: 40px;
    border-radius: 30px;
    max-width: 850px;
    margin: 0 auto;
}


@media (max-width: 768px){
    .caixa-oferta{
        padding: 25px;
    }
}

.divisor-orange { 
    width: 80px; 
    height: 5px; 
    background: #F17B14; 
    margin: 0 auto 20px; 
}

.preco-agora { 
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900; 
    color: #F17B14; 
    line-height: 1; 
}

.footer-vendas { 
    padding: 40px; 
    text-align: center; 
    border-top: 1px solid #1e293b; 
    font-size: 0.8rem;
    margin-top: 50px;
}

.yes-credit {
	margin-top: 0;
	font-size: 14px;
	color: white;
	margin-bottom: 0;
  }
  
  .heart {
	color: #ffffff;
  }
  .yes-credit .yesdev {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.carrossel-infinito {
    background-color: #01040a; 
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.scroll-wrapper {
    width: 100%;
    display: flex;
}

.scroll-content {
    display: flex;
    gap: 20px;
    animation: infiniteScroll 30s linear infinite;
}

.scroll-content img {
    width: 280px; 
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(241, 123, 20, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.scroll-content img:hover {
    transform: scale(1.05);
    border-color: #F17B14;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carrossel-infinito:hover .scroll-content {
    animation-play-state: paused;
}

/*Seção sobre o Gui*/

.gui-section {
    border: 1px solid white;
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.gui-section h1 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 49.5px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: white;
}

.gui-section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18.18px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.layout-gui-section {
    width: 628px;
    height: 319px;
    gap: 39px;
    text-align: left;
    order: 2;
}

.layout2-gui-section {
    order: 1; 
    align-self: flex-start; 

    width: 396px;
    height: 450px;
    
    position: relative; 
    border-radius: 8px; 
    overflow: hidden; 
}

.layout2-gui-section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
}


.gui-section p{
    color: #fff;
    text-align: left !important;
}

.saiba-mais {
    margin-top: 40px;
}

.btn-saiba-mais{
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--anton);
    text-transform: uppercase;
    font-size: 28px;
    padding: .3rem 1rem;
    text-align: center;
    margin-top: 3rem !important;
    display: block;
    width: 40%;
}

.btn-saiba-mais:hover{
    color: #fff;
}

@media (max-width: 768px){
    .gui-section{
        border: none;
    }

    .btn-saiba-mais{
        width: 100%;
    }
}

.layout-gui-section{
    height: auto;
}

#mentor {
    padding: 30px 0;
}

.pricing-details {
    height: auto;
}


@media (max-width: 426px) {

    .gui-section {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .layout2-gui-section {
        width: 100% !important; 
        height: 380px !important;
        align-self: auto;
    }

    .layout-gui-section {
        width: 100% !important;
        height: auto !important; 
        text-align: center;
        gap: 20px;
    }

    .gui-section h1 {
        font-size: 32px; 
        line-height: 1.2;
    }

    .gui-section p {
        font-size: 16px;
        line-height: 1.5;
    }

    .layout-gui-section button {
        width: 100%; 
        font-size: 1rem;
    }
    .Gui-Pose-2 {
        height: 500px;
        width: 500px;
    }

    .Nao-Perde-Tempo{
        width: 250px;
    }
}





/*Nova seção*/


.vdf-feature-section{
    position: relative;
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(180deg, #0a1124 0%, #020817 100%);
    overflow: hidden;
}

.vdf-feature-section::before,
.vdf-feature-section::after{
    content:"";
    position:absolute;
    inset:auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .18;
    pointer-events: none;
}

.vdf-feature-section::before{
    top: -220px;
    left: -180px;
    background: radial-gradient(circle, rgba(241,123,20,.9), rgba(241,123,20,0) 60%);
}

.vdf-feature-section::after{
    bottom: -260px;
    right: -220px;
    background: radial-gradient(circle, rgba(59,130,246,.9), rgba(59,130,246,0) 60%);
}

.vdf-feature-titlebox{
    background: #ffffff;
    color: #020817;
    border-radius: 22px;
    padding: 28px 24px;
    max-width: 920px;
    margin: 0 auto 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    border: 1px solid rgba(2, 8, 23, 0.08);
}

.vdf-feature-title{
    font-family: 'Anton', sans-serif;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0;
    line-height: 1.1;
}

.vdf-feature-subtitle{
    margin: 10px 0 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(2, 8, 23, .8);
}

.vdf-feature-lead{
    max-width: 920px;
    margin: 0 auto 36px;
    color: #cbd5e1;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.7;
}

.vdf-feature-grid{
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.vdf-feature-card{
    border-radius: 22px;
    padding: 28px 22px;
}

.vdf-feature-card h3{
    margin: 12px 0 8px;
    font-weight: 800;
    font-size: 1.2rem;
}

.vdf-feature-card p{
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

.vdf-feature-icon{
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(241,123,20,.14);
    border: 1px solid rgba(241,123,20,.35);
    box-shadow: 0 0 26px rgba(241,123,20,.18);
    font-size: 1.35rem;
    color: #F17B14;
}

.vdf-feature-card--wide{
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
}

.vdf-feature-cta{
    margin-top: 34px;
    text-align: center;
}

.vdf-feature-note{
    margin-top: 12px;
    color: #94a3b8;
    font-size: .95rem;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.btn-feature-section{
    display: block;
    max-width: 50%;
}

@media (max-width: 768px){
    .vdf-feature-section{
        padding: 70px 16px;
    }

    .vdf-feature-grid{
        grid-template-columns: 1fr;
    }

    .vdf-feature-card--wide{
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .vdf-feature-titlebox{
        padding: 22px 18px;
        border-radius: 18px;
    }
}

/*Selo*/

.proof-badge{
    display:inline-flex;
    align-items:center;
    gap:.65rem;
    padding:.8rem 1.25rem;
    border-radius:999px;
    font-weight:800;
    letter-spacing:.2px;
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    position:relative;
    margin:.9rem auto 0;
    text-align:center;
    line-height:1.15;
}

.proof-badge--glow-wide{
    padding:1rem 1.4rem;
    min-width:min(780px, 92vw);
    justify-content:center;
    box-shadow: 0 0 0 2px rgba(255,255,255,.05) inset, 0 0 0 1px rgba(255,122,24,.35), 0 12px 34px rgba(255,122,24,.28), 0 6px 20px rgba(0,0,0,.35);
    isolation:isolate;
}

@keyframes badgeShine{
    60% {
        transform:translateX(0%);
    }
    100% { 
        transform:translateX(120%);
    }
}

.proof-badge .fa-medal{
    font-size:1.1rem;
    color:#ffcf7a;
    background:#0b0f1a;
    border:2px solid rgba(255,183,43,.65);
    border-radius:999px;
    padding:.28rem;
    box-shadow: 0 0 0 2px rgba(255,122,24,.15), 0 6px 16px rgba(255,122,24,.35);
}

.proof-badge strong{
    background:linear-gradient(90deg, #ff7a18, #ffb72b);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.proof-badge--glow-wide:hover{
  transform:scale(1.015);
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06) inset, 0 0 0 1px rgba(255,122,24,.5), 0 16px 44px rgba(255,122,24,.35), 0 8px 24px rgba(0,0,0,.45);
}

@media (max-width:768px){
    .proof-badge--glow-wide{
        min-width:unset;
        width:100%;
        padding:.9rem 1rem;
    }
}
@media (max-width:576px){
    .proof-badge{
        font-size:.96rem;
    }
}
