:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
}
body.landing-page {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* Gradiente do Título */
.text-gradient-gold {
    background: linear-gradient(90deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ====================== BOTÕES ====================== */
.btn-primary {
    background: linear-gradient(90deg, #f97316, #fbbf24);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.5);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.6);
}
.btn-secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
}
/* ====================== CARDS ====================== */
.benefit-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}
.benefit-card:hover {
    border-color: #f97316;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -15px rgba(249, 115, 22, 0.18);
}
.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    color: #f97316;
    transition: transform 0.3s ease;
}
.benefit-card:hover .icon-wrapper {
    transform: scale(1.1);
}
img{
    max-width:100%;
    height:auto;
}
button{
    cursor:pointer;
}
a{
    text-decoration:none;
}
.number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #f3f4f6;
    z-index: -1;
    transition: color 0.3s ease;
}
.benefit-card:hover .number {
    color: #fee2c7;
}
/* ====================== TESTEMUNHOS ====================== */
.testimonial-card {
    background: #18181b;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    background: #27272a;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}
/* ====================== CTA ====================== */
.cta-box {
    background: linear-gradient(145deg, #18181b, #111113);
    border: 1px solid #3f3f46;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}
/* ====================== HERO ====================== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
}
/* ====================== RESPONSIVIDADE - MOBILE ====================== */
@media (max-width: 768px) {
    section{
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .hero{
    background:
        radial-gradient(circle at top right,#fde68a40 0%,transparent 35%),
        radial-gradient(circle at bottom left,#fb923c20 0%,transparent 40%),
        linear-gradient(135deg,#f8fafc 0%,#fefce8 100%);
}
    .container{
        padding-left:18px;
        padding-right:18px;
    }
    h1{
        font-size:2.3rem !important;
        line-height:1.1;
        margin-bottom:10px !important;
    }
    h2{
        font-size:1.9rem !important;
        line-height:1.2;
        margin-bottom:8px !important;
    }
    h3{
        font-size:1.2rem !important;
    }
    .text-6xl{font-size:2.3rem!important;}
    .text-5xl{font-size:2rem!important;}
    .text-4xl{font-size:1.8rem!important;}
    .text-3xl{font-size:1.5rem!important;}
    .text-2xl{font-size:1.25rem!important;}
    .text-xl{font-size:1.05rem!important;}
    .text-lg{font-size:1rem!important;}
    p{
        font-size:.95rem;
        line-height:1.7;
    }
    .hero p{
        font-size:1rem;
        margin-bottom:12px !important;
    }
    /* Botões */
    .btn-primary,
.btn-secondary{
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}
    /* Espaço entre botões */
    .flex.gap-4{
        gap:12px !important;
        flex-direction:column;
    }
    /* Cards */
    .benefit-card{
        padding:22px 18px;
        border-radius:18px;
        margin-bottom:8px;
    }
    .icon-wrapper{
    transition:
        transform .35s ease,
        color .35s ease;
}
.benefit-card:hover .icon-wrapper{
    color:#ea580c;
}
    .number{
        font-size:2.2rem;
        top:16px;
        right:16px;
    }
    .testimonial-card{
        padding:20px;
        border-radius:16px;
        border:1px solid rgba(255,255,255,.05);
    }
    .cta-box{
    border-radius:32px;
    overflow:hidden;
    position:relative;
}
.cta-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(249,115,22,.15),
        transparent 45%);
    pointer-events:none;
}
    .cta-box h2{
        font-size:1.8rem !important;
    }
    .cta-box p{
        font-size:.95rem;
    }
}
/* ====================== TELAS MUITO PEQUENAS ====================== */
@media (max-width:480px){
    section{
        padding-top:44px !important;
        padding-bottom:44px !important;
    }
    .container{
        padding-left:16px;
        padding-right:16px;
    }
    h1{
        font-size:2rem !important;
    }
    h2{
        font-size:1.65rem !important;
    }
    p{
        font-size:.92rem;
    }
    .hero{
        padding-top:82px;
    }
    .benefit-card{
        padding:18px 16px;
    }
    .testimonial-card{
        padding:18px;
    }
    .cta-box{
        padding:24px 12px !important;
    }
    .btn-primary,
    .btn-secondary{
        padding:12px 16px !important;
        font-size:.9rem;
    }
}
@media (hover:hover){
    .benefit-card:hover{
        transform:translateY(-12px);
    }
    .testimonial-card:hover{
        transform:translateY(-8px);
    }
}

/* ====================== ANIMAÇÕES CONTÍNUAS ====================== */

/* Flutuação suave para badges (tags) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.floating-badge {
    animation: float 4s ease-in-out infinite;
}

/* Efeito de pulso (brilho) chamativo para os botões primários (CTA) */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.pulse-btn {
    animation: pulse-glow 2.5s infinite;
}
.pulse-btn:hover {
    animation: none; /* Pausa o pulso no hover para focar na animação original do botão */
}

/* ====================== BOTÃO VOLTAR AO TOPO ====================== */
#btnBackToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Começa um pouco abaixo para animação */
    transition: all 0.4s ease;
    z-index: 50;
}

#btnBackToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Sobe suavemente quando visível */
}

#btnBackToTop:hover {
    transform: translateY(-5px); /* Dá um leve pulo ao passar o mouse (desktop) */
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

/* Ajuste do tamanho no mobile */
@media (max-width: 768px) {
    #btnBackToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}