/* FORÇA ficar lado a lado SEMPRE */
.nav-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

/* Remove comportamento padrão do Bootstrap no mobile */
.nav-buttons .nav-item {
    display: inline-block;
}

/* Botão principal */
.btn-cta-nav {
    background: linear-gradient(45deg, #ff6a00, #ffcc00);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Login mais discreto */
.btn-login {
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 6px 14px;
    color: #fff !important;
}

/* Hover */
.btn-cta-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

/* espec top principal */
@media(max-width:991px){
    .long-correcao, .top-corracao{
        margin-left:0 !important;
        margin-top: 10px
    }
}



@media(min-width: 992px){
    .long-correcao,  .top-corracao{
        margin-left:0 !important;
        margin-top: -160px
    }
}










/* REMOVE O PROBLEMA PRINCIPAL */
@media(max-width:991px){
    .margemcell{
        margin-left:0 !important;
    }
}

/* SOCIAL PROOF */
.social-proof{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:nowrap;
}

/* avatares */
.avatars{
    display:flex;
    flex-shrink:0;
}

.avatars img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-12px;

    user-select:none;
    -webkit-user-drag:none;
}

.avatars img:first-child{
    margin-left:0;
}

/* texto */
.social-text{
    font-size:16px;
    font-weight:500;
    color:#fff;
    white-space:nowrap;
}

/* RESPONSIVO SEM QUEBRAR LAYOUT */
@media(max-width:768px){

    .social-proof{
        justify-content:center;
        gap:10px;
        transform:scale(0.95);
    }

    .social-text{
        font-size:13px;
    }

    .avatars img{
        width:34px;
        height:34px;
        margin-left:-10px;
    }
}

@media(max-width:480px){

    .social-proof{
        transform:scale(0.9);
    }

    .social-text{
        font-size:12px;
    }
}
</style>



<style>
*{
    box-sizing:border-box;
}

.slider-track{
    display:flex;
    gap:20px;

    width:max-content;
    max-width:100%;

    animation:marquee 25s linear infinite;
    will-change: transform;
}

/* 🔥 TRAVA O CONTAINER PARA NÃO ESTOURAR */
.slider-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* CARD */
.testimonial-card{
    width:300px;
    flex:0 0 auto;

    background:#fff;
    border-radius:14px;
    padding:22px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    margin-bottom:30px;
}

/* TEXTO */
.testimonial-card p{
    font-size:14px;
    color:#444;
    line-height:1.5;
}

/* ESTRELAS */
.stars{
    color:#ffb400;
    margin-bottom:10px;
}

/* USER */
.user{
    display:flex;
    align-items:center;
    gap:10px;
}

.user img{
    width:40px;
    height:40px;
    border-radius:50%;
}

/* 🔥 LOOP SUAVE SEM VAZIO */
@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* RESPONSIVO */
@media(max-width:768px){
    .testimonial-card{
        width:260px;
    }
}

.testimonial-marquee{
    width:100%;
    overflow:hidden;
    position:relative;

    padding:60px 0;
    background:#f9fbff;
}

/* TRACK CONTÍNUO */
.slider-track{
    display:flex;
    gap:20px;
    width:max-content;

    animation:marquee 15s linear infinite;
    will-change: transform;
}

/* CARD */
.testimonial-card{
    width:320px;
    flex-shrink:0;

    background:#fff;
    border-radius:14px;
    padding:22px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* TEXTO */
.testimonial-card p{
    font-size:14px;
    color:#444;
    line-height:1.5;
    margin-bottom:15px;
}

/* ESTRELAS */
.stars{
    color:#ffb400;
    margin-bottom:10px;
}

/* USER */
.user{
    display:flex;
    align-items:center;
    gap:10px;
}

.user img{
    width:42px;
    height:42px;
    border-radius:50%;
}

/* 🔥 LOOP REAL SEM VAZIO */
@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* PAUSA NO HOVER */
.slider-track:hover{
    animation-play-state:paused;
}

/* RESPONSIVO */
@media(max-width:768px){
    .testimonial-card{
        width:280px;
    }
}


/* =========================
   MODAL FULL SCREEN CLEAN
========================= */
.lightbox-basic{
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    background: #ffffff;

    z-index: 99999;
    overflow: hidden;
}

/* CONTAINER PRINCIPAL */
.lightbox-basic > div{
    width: 100%;
    height: 100vh;

    max-width: 100%;
    border-radius: 0;

    padding: 25px;
    overflow-y: auto;

    position: relative;

    background: linear-gradient(135deg,#ffffff,#f6fff9);

    animation: fadeIn .25s ease;
}

/* ENTRADA SUAVE */
@keyframes fadeIn{
    from{
        transform: scale(1.02);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   BRILHO ANIMADO PASSANDO
========================= */
.lightbox-basic > div::before{
    content:"";
    position:absolute;
    top:0;
    left:-40%;

    width:60%;
    height:100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );

    transform: skewX(-20deg);

    animation: shine 3.5s infinite;
}

@keyframes shine{
    0%{
        left:-60%;
    }
    100%{
        left:120%;
    }
}

/* =========================
   TÍTULO MODERNO
========================= */
.lightbox-basic h3{
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #1f3b4d;
}

/* =========================
   INPUTS MODERNOS
========================= */
.form-control-modern{
    width: 100%;

    padding: 13px 14px;
    margin: 0;

    border: 1px solid #e8e8e8;
    border-radius: 12px;

    background: #f9fafc;

    font-size: 14px;

    outline: none;

    transition: .3s;
}

/* foco com glow */
.form-control-modern:focus{
    border-color: #27ae60;
    background: #fff;

    box-shadow: 0 0 0 4px rgba(39,174,96,0.15);
}

/* hover leve */
.form-control-modern:hover{
    border-color: #ccc;
}

/* =========================
   LABEL
========================= */
.lightbox-basic label{
    font-size: 13px;
    font-weight: 600;
    color: #555;

    margin: 8px 0 5px 0;
    display: block;
}

/* =========================
   ALERTA
========================= */
.senha-alerta{
    background: linear-gradient(135deg,#fff7e6,#ffffff);
    border: 1px solid #ffe3a3;

    border-radius: 14px;

    padding: 12px;

    font-size: 13px;
    color: #444;

    margin-top: 15px;
}

/* texto pulsando */
.zoom-pulse{
    margin-top: 8px;
    font-weight: 700;
    color: #ff6a00;

    animation: pulse 1.6s infinite;
}

@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.04); }
    100%{ transform: scale(1); }
}

/* =========================
   BOTÃO
========================= */
.btn-submit{
    width: 100%;

    margin-top: 15px;

    padding: 14px;

    border: none;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(135deg,#27ae60,#2ecc71);

    cursor: pointer;

    transition: .3s;
}

.btn-submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39,174,96,0.25);
}

/* =========================
   RESPONSIVO
========================= */
@media(max-width:600px){

    .lightbox-basic > div{
        padding: 15px;
    }

    .lightbox-basic h3{
        font-size: 18px;
    }

    .form-control-modern{
        font-size: 13px;
    }
} 
.zoom-pulse {
    animation: zoomPulse 1.8s ease-in-out infinite;
    transform-origin: center;
}
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}








/* =====================================
   RECURSOS DO PLANO - GRID RESPONSIVO
===================================== */

.plano-recursos {

    width:100%;

    margin-top:20px;

}


.recursos-titulo {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    font-size:16px;

    font-weight:700;

    color:#1e293b;

    margin-bottom:18px;

}



/* GRID DOS RECURSOS */

.menus-liberados {

    display:grid;

    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

    gap:12px;


    width:100%;

    max-height:420px;

    overflow-y:auto;

    padding:5px;

}



/* Scroll elegante */

.menus-liberados::-webkit-scrollbar {

    width:6px;

}


.menus-liberados::-webkit-scrollbar-thumb {

    background:#cbd5e1;

    border-radius:20px;

}



/* CARD DO RECURSO */

.menu-tag {


    display:flex;

    align-items:center;


    gap:12px;


    padding:14px;


    min-height:60px;


    background:#fff;


    border:1px solid #e5e7eb;


    border-radius:16px;


    cursor:pointer;


    transition:.25s ease;


}



.menu-tag:hover {


    transform:translateY(-3px);


    border-color:#3b82f6;


    box-shadow:

    0 10px 25px rgba(37,99,235,.12);


}



/* Ícone */

.menu-icon {


    flex:none;


    width:38px;

    height:38px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:12px;


    background:

    linear-gradient(
        135deg,
        #dbeafe,
        #eff6ff
    );


    color:#2563eb;


}



/* Nome */

.menu-name {


    flex:1;


    font-size:14px;

    font-weight:600;

    color:#334155;


}



/* Check */

.menu-check {


    flex:none;


    width:24px;

    height:24px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    background:#dcfce7;


    color:#16a34a;


    font-size:12px;


}



/* Desktop grande */

@media(min-width:1400px){


    .menus-liberados{

        grid-template-columns:
        repeat(3,1fr);

    }


}



/* Tablet */

@media(max-width:900px){


    .menus-liberados{

        grid-template-columns:
        repeat(2,1fr);

    }


}



/* Celular */

@media(max-width:600px){


    .menus-liberados{

        grid-template-columns:
        1fr;


        max-height:none;

    }


    .menu-tag{

        padding:13px;

    }


}








.plan-details{
    background:linear-gradient(135deg,#fff,#f6fff9);
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin:10px auto;
    max-width:600px;
}

/* HEADER */
.plano-header h2{
    font-size:22px;
    font-weight:800;
    color:#27ae60;
}

.plano-subtitulo{
    font-size:13px;
    color:#777;
}

/* BOTÃO TOGGLE */
.toggle-area{
    margin:10px 0;
}

.btn-toggle{
    background:linear-gradient(135deg,#27ae60,#2ecc71);
    border:none;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-toggle:hover{
    transform:scale(1.05);
}

/* EXPAND */
.plan-expand{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:.5s ease;
}

.plan-expand.active{
    max-height:1200px;
    opacity:1;
}

/* GRID MINI CARDS */
.plano-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:15px;
}

.info-card{
    background:#fff;
    border-radius:14px;
    padding:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
    text-align:center;
}

.info-icon{
    font-size:20px;
}

.info-title{
    font-size:11px;
    color:#777;
}

.info-value{
    font-size:16px;
    font-weight:700;
    color:#27ae60;
}


.menu-tag{
    background:#27ae60;
    color:#fff;
    padding:6px 10px;
    border-radius:20px;
    font-size:12px;
}

/* DETALHES */
.menu-detalhes{
    background:#f8f8f8;
    border-radius:12px;
    padding:10px;
    margin-top:10px;
    font-size:12px;
}

/* VALOR */
.valor-total-box{
    background:linear-gradient(135deg,#27ae60,#2ecc71);
    color:#fff;
    padding:15px;
    border-radius:16px;
    text-align:center;
    margin-top:15px;
}

.valor-final{
    font-size:24px;
    font-weight:800;
}

/* BOTÃO FINAL */
.btn-contratar{
    display:block;
    margin-top:12px;
    padding:12px;
    border-radius:12px;
    text-align:center;
    background:linear-gradient(135deg,#ffb300,#ff6a00);
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-contratar:hover{
    transform:translateY(-2px);
}

/* RESPONSIVO */
@media(max-width:768px){
    .plano-info-grid{
        grid-template-columns:1fr;
    }

    .plan-details{
        max-width:95%;
    }
}






.btn-contratar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.extra-info{

    margin-top:12px;

    background:#f7fff9;

    border:1px solid #d9f5e3;

    border-radius:12px;

    padding:10px;

    font-size:13px;

    color:#2c3e50;

    line-height:1.8;
}

.extra-info strong{
    color:#27ae60;
}

.price-box{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
}

.old-price{
    font-size:14px;
    color:#95a5a6;
    text-decoration:line-through;
    font-weight:600;
}

.current-price{
    font-size:25px;
    font-weight:900;
    color:#27ae60;
    line-height:1;
}

.price-period{
    font-size:13px;
    color:#7f8c8d;
    font-weight:600;
}

.discount-badge{
    margin-top:5px;
    background:linear-gradient(
        135deg,
        #ff6b35,
        #ff3b30
    );
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:30px;
    box-shadow:0 4px 15px rgba(255,59,48,.35);
}

.plan-card{
    position:relative;
    overflow:visible;
    border:none;
    background:#fff;
    border-radius:22px;
    padding:24px 18px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.plan-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:5px;
    background:linear-gradient(
        90deg,
        #27ae60,
        #2ecc71
    );
}

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 40px rgba(39,174,96,.18);
}

.plan-card.active{
    background:linear-gradient(
        135deg,
        #ffffff,
        #f1fff7
    );
    border:2px solid #27ae60;
}

@media(max-width:768px){

    .current-price{
        font-size:30px;
    }

    .old-price{
        font-size:15px;
    }

    .discount-badge{
        font-size:11px;
        padding:5px 10px;
    }

    .plan-card{
        min-width:190px;
        max-width:220px;
    }

}


.menu-tag{
    background:#fff;
    color:#2c3e50;
    padding:8px 14px;
    border-radius:30px;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.menu-tag:hover{
    transform:translateY(-3px);
    background:#27ae60;
    color:white;
}

.menu-detalhes{
    margin-top:15px;
    background:white;
    padding:15px;
    border-radius:12px;
    min-height:80px;
    text-align:left;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

#planoRecomendado{
background:#fff3cd;
border:1px solid #ffe69c;
padding:12px;
border-radius:12px;
font-weight:700;
color:#856404;
}

#menusLiberados{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:8px;
margin-top:10px;
}

.menuTag{
background:#27ae60;
color:#fff;
padding:6px 12px;
border-radius:30px;
font-size:13px;
font-weight:600;
}

.plan-details{
border-radius:20px;
background:linear-gradient(
135deg,
#ffffff,
#f5fff9
);
box-shadow:0 8px 30px rgba(0,0,0,.12);
}

.plan-card.active{
border:3px solid #27ae60;
background:linear-gradient(
135deg,
#e9fff2,
#d7ffea
);
}

#economiaAnual{
margin-top:10px;
font-weight:700;
color:#27ae60;
font-size:15px;
}
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.toggle-switch {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 320px;
    background: #f1f3f5;
    border-radius: 50px;
    padding: 6px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.toggle-switch span {
    flex: 1;
    text-align: center;
    z-index: 2;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 5px;
    color: #555;
    transition: 0.3s;
}

.toggle-switch span small {
    font-size: 11px;
    font-weight: 500;
}

.toggle-switch .active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(39,174,96,0.4);
    transition: all 0.35s cubic-bezier(.25,.8,.25,1);
}

/* Efeito hover suave */
.toggle-switch:hover {
    transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 480px) {
    .toggle-switch {
        max-width: 260px;
    }

    .toggle-switch span {
        font-size: 13px;
        padding: 8px 4px;
    }

    .toggle-switch span small {
        display: block;
        font-size: 10px;
    }

}




/* Estilo padrão (desktop/tablet) */
.plan-slider {
    gap: 15px;
    padding: 0 20px 20px 20px;
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    scrollbar-width: thin;
    scrollbar-color: #27ae60 transparent;
    scroll-behavior: smooth;
}

/* Estilo para celular (mobile) */
@media (max-width: 768px) {
    .plan-slider {
        padding: 0 20px 20px 180px;
    }
}
.plan-slider::-webkit-scrollbar {
    height: 8px;
}
.plan-slider::-webkit-scrollbar-thumb {
    background: #27ae60;
    border-radius: 10px;
}
.plan-card {
    flex: 0 0 auto;
    min-width:180px;
    max-width:220px;
    padding:20px;
    border-radius:16px;
    background-color:#fff;
    box-shadow:0 6px 15px rgba(0,0,0,0.1);
    cursor:pointer;
    transition: all 0.3s ease;
    text-align:center;
}
.plan-card:hover {
    transform:translateY(-8px);
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}
.plan-card.active {
    border:3px solid #27ae60;
    background: linear-gradient(135deg, #d1f0e5, #a8e0d8);
}

/* Responsivo Mobile */
@media(max-width:768px){
    .plan-card {
        min-width:150px;
        max-width:180px;
        padding:15px;
    }
    .plan-details {
        padding:20px;
        max-width:90%;
    }
    button.btn {
        width:80%;
    }
}
.plan-card p {
    color: #2c3e50;
    font-weight: 500;
}

.plan-details {
    color: #2c3e50;
}
#planoDescricao {
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.5;
}



.menu-tag{
    background:linear-gradient(
        135deg,
        #27ae60,
        #2ecc71
    );

    color:white;
    padding:10px 15px;
    border-radius:30px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.menu-tag:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.detalhe-box{
    margin-top:15px;
    background:white;
    border-radius:15px;
    padding:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:left;
}

.plano-header{
    text-align:center;
    margin-bottom:25px;
}

.plano-header h2{
    font-weight:800;
    color:#27ae60;
    margin-bottom:10px;
}

.plano-subtitulo{
    color:#6c757d;
    font-size:15px;
}

.plano-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-bottom:25px;
}

.info-card{
    background:white;
    border-radius:18px;
    padding:20px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.info-icon{
    font-size:28px;
    margin-bottom:10px;
}

.info-title{
    color:#7f8c8d;
    font-size:13px;
    font-weight:600;
}

.info-value{
    margin-top:5px;
    font-size:22px;
    font-weight:800;
    color:#27ae60;
}

.titulo-recursos{
    font-weight:700;
    color:#1f3b4d;
    margin-bottom:15px;
}

.descricao-plano{
    background:#ffffff;
    border-radius:15px;
    padding:15px;
    box-shadow:0 3px 12px rgba(0,0,0,.06);
    margin-bottom:20px;
}

.resumo-financeiro{
    margin-top:25px;
}

.valor-total-box{

    background:linear-gradient(
        135deg,
        #27ae60,
        #2ecc71
    );

    color:white;

    border-radius:20px;

    padding:20px;

    display:flex;
    flex-direction:column;

    align-items:center;

    margin-top:15px;
}

.valor-label{
    font-size:16px;
    opacity:.9;
}

.valor-final{
    font-size:40px;
    font-weight:900;
}

.btn-contratar{

    margin-top:25px;

    background:linear-gradient(
        135deg,
        #27ae60,
        #2ecc71
    );

    border:none;

    color:white;

    font-size:18px;

    font-weight:700;

    border-radius:15px;

    padding:15px 35px;

    transition:.3s;
}

.btn-contratar:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(39,174,96,.3);
}

.mertsome{
    display:none;
    background:red;
}

@media (max-width:768px){
    .mertsome{
        display:block;
    }
}



.button-container {
    display: flex;               /* ativa o flexbox */
    justify-content: center;     /* centraliza horizontalmente */
    align-items: center;         /* centraliza verticalmente */
    gap: 15px;                   /* espaçamento entre os botões */
    flex-wrap: wrap;             /* permite quebrar a linha em telas menores */
    margin-top: 20px;            /* opcional: distância do conteúdo acima */
}

/* Estilos para a barra de cookies UniSoft Agendas */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1E1E2F;
    color: #ffffff;
    padding: 15px 20px;
    display: none; /* Oculto por padrão */
    justify-content: center;
    align-items: center;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #F1C40F;
    font-family: 'Poppins', sans-serif;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: 10px;
    line-height: 1.5;
}

.cookie-content a {
    color: #F1C40F;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-content a:hover {
    color: #FFD966;
}

.accept-btn {
    background-color: #F1C40F;
    color: #1E1E2F;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.accept-btn:hover {
    background-color: #e1b20f;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-bottom: 10px;
        padding-right: 0;
    }
}



.faq-modern{
    padding:70px 0;
    background:#f8fbff;
}

.faq-header h2{
    font-size:32px;
    font-weight:700;
}

.faq-header p{
    color:#666;
    margin-bottom:25px;
}

/* ITEM */
.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:10px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    overflow:hidden;
}

/* BOTÃO */
.faq-question{
    width:100%;
    padding:16px;
    border:none;
    background:#fff;

    font-size:15px;
    font-weight:600;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;
}

.faq-question span{
    font-size:20px;
    transition:0.3s;
}

/* RESPOSTA */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    padding:0 16px;
    font-size:14px;
    color:#555;
}

/* ABERTO */
.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 16px 16px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
    color:#ff6a00;
}

/* destaque integração */
.faq-item.highlight{
    border-left:4px solid #25D366;
}

/* imagem flutuante */
.faq-img{
    max-width:420px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

/* responsivo */
@media(max-width:768px){
    .faq-header h2{
        text-align:center;
        font-size:26px;
    }

    .faq-header p{
        text-align:center;
    }

    .faq-img{
        margin-top:30px;
        max-width:300px;
    }
}