:root {
    --primary: #2563eb;
    --secondary: #0b1d46;
    --ternary: #7ca1f3;
    --quaternary: #d3dffb;
    --blue-sky: #00d2ff;
    --we-ink: #1e293b;
    --we-ink-soft: #5b6472;
    --we-line: #e6e8f0;
    --text: #f3f4f6;
    --text-muted: #9ca3af;
    --bg: #020617;
    --bg-card: #0f1722;
    --border: #1e293b;
    --white: #ffffff;
    --green: #25D366;
    --gray-medium: #efefef;
    --gray-light: #f9f9f9;
    --purple: #7c3aed;
    --pink: #ec4899;
    --red: #ff0000;
    --orange: #ff9f00;
    --we-gold: #DAA425;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--secondary);
}

.wrap { width: 90%; max-width: 1200px; margin: 0 auto; }

.network-background-canvas {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.line-through{
    text-decoration: line-through !important;
    color: var(--red) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Staatliches", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
}

h1{
    font-weight: bold;
}

/* Para as seções, quando rolar o scroll, não ficar atrás do header FIXO */
section {
    scroll-margin-top: 150px;
}

#solucoes,
#processo {
    background: transparent !important;
}

/* OCULTOS TEMPORÁRIOS */

#depoimentos,
/* #avaliacoes, */
#instagram,
#parceiros,
#localizacao {
    display: none !important;
}

@media(min-width: 600px){
    #planos .owl-dots,
    #planos .plans-nav {
        display: none !important;
    }
}

/* BOTÕES */

.planos-e-modelos {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.planos-e-modelos>a {
    position: inherit;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 5px;
    background-color: #ffffff;
    font-weight: 500;
    color: var(--secondary);
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.planos-e-modelos>a:hover {
    background-color: var(--secondary);
    color: #ffffff;
}

@media(min-width: 1024px) {
    .planos-e-modelos {
        flex-direction: row;
    }
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(18px);
    background: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

@media(min-width: 980px) {
    header {
        background: rgba(5, 5, 5, .75);
    }
}

.header-container {
    width: 90%;
    max-width: 1280px;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    width: 80px;
    height: 80px;
    color: #fff;
    text-decoration: none;
}

.logo img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

@media (min-width: 1440px) {
    .logo {
        overflow: hidden;
        position: relative;
        width: 120px;
        height: 120px;
        margin-top: 30px;
    }

    .logo svg {
        position: absolute;
        width: 100%;
        height: auto;
        border: 1px solid #333333;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

@media(min-width: 980px) and (max-width: 1440px) {
    nav ul {
        gap: 20px;
    }
}

nav ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-family: "Staatliches", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .3s;
    position: relative;
}

nav ul li a.active,
nav ul li a:hover {
    color: #fff;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 8px;
}

.whatsapp-step {
    color: inherit !important;
    text-decoration: none;
}

.whatsapp-step span {
    transition: .2s;
    color: var(--green) !important;
}

.whatsapp-step:hover span {
    text-decoration: underline !important;
    color: #075e54 !important;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn svg {
    fill: #fff;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* MOBILE MENU */

.hamburger {
    width: 30px;
    height: 42px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 8px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 35px;
    right: 35px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

.mobile-menu .logo {
    margin-bottom: 10px;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 25px 0;
}

.mobile-menu ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-family: "Staatliches", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: transparent;
    border-radius: 8px;
}

.mobile-menu ul li a.active::after {
    background: #3b82f6;
}

.mobile-menu .whatsapp-icon {
    fill: #fff;
    width: 25px;
    height: 25px;
}

/* GLOBAL */

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

@media(min-width: 1100px) {
    #funcionalidades .container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }
}

section {
    padding: 120px 0;
    position: relative;
}

.dark {
    background: var(--secondary);
    color: #fff;
}

#faq.dark {
    background: linear-gradient(135deg, #0f172a 0%, #1b2745 58%, #243154 100%);
}

.gray {
    background: var(--gray-light);
    color: var(--secondary);
}

.light {
    background: #fff;
    color: var(--secondary);
}

.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.dark .section-tag {
    background: rgba(255, 255, 255, .08);
}

.gray .section-tag,
.light .section-tag {
    background: var(--gray-medium);
}

h1 {
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 30px;
}

h2 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 25px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
}

.dark p {
    color: #b8b8b8;
}

.dark .faq-question {
    color: var(--secondary);
}

.dark .faq-answer p {
    color: var(--border) !important;
}

.gray p,
.light p {
    color: var(--we-ink-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
    background: #fff;
    color: #000;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-ghost { width: 100%; background: transparent !important; color: var(--white) !important; border: 1.5px solid rgba(255,255,255,.35) !important; }
.btn-ghost { color: var(--dark-text); border-color: rgba(0,0,0,.3); }
.btn-ghost:hover { background: var(--primary) !important; color: var(--dark-text) !important; border-color: var(--primary) !important; }
.btn-wa { width: 100%; background: linear-gradient(135deg, var(--green), var(--green)) !important; color: var(--white) !important; box-shadow: 0 12px 30px rgba(18,182,87,.3); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(18,182,87,.42); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-ghost,
.btn-wa { 
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
}
@media(min-width: 600px){
    .btn-ghost,
    .btn-wa { width: fit-content; }
}

.grid {
    display: grid;
    gap: 30px;
}

.cards .cards-button span {
    display: inline-block;
    background-color: var(--gray-light);
    border: 1px solid var(--border);
    color: var(--secondary);
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 15px;
    font-weight: 700;
    cursor: pointer;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 60px;
}

.cards--adds .card {
    padding: 0 !important;
}

.cards--adds .cards-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 40px;
    text-decoration: none !important;
    color: var(--secondary) !important;
}

.cards--adds .cards-button p {
    flex: 1;
}

.cards--links>a {
    text-decoration: none !important;
}

.cards--links>a h3 {
    color: var(--secondary);
    transition: .4s;
}

.card {
    padding: 40px;
    border-radius: 8px;
    transition: .4s;
}

.dark .card {
    background: var(--secondary);
}

.gray .card,
.light .card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .05);
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 20px;
}

#parceiros .card {
    text-align: center;
}

#parceiros .card:hover {
    border: 1px solid var(--primary);
}

.pricing {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    margin-top: 70px;
}

@media (min-width: 768px) {
    .pricing {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.price-card {
    position: relative;
    padding: 0px;
    border-radius: 8px;
    transition: .4s;
}

.price-card .tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    width: max-content;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
}

.price-card button {
    display: inline-block;
    background-color: var(--gray-light);
    border: 1px solid var(--border);
    color: var(--text-light);
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
}

.price-card-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-decoration: none !important;
    color: inherit !important;
}

@media (min-width: 1024px) {
    .price-card-link {
        padding: 45px;
    }
}

.price-card h3 {
    color: var(--primary);
    margin-top: 15px;
}

@media (min-width: 1024px) {
    .price-card h3 {
        margin-top: 0;
    }
}

.price-card span {
    font-size: 2rem;
}

.price-card .price span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.price-card:hover {
    transform: translateY(-10px);
}

.gray .price-card,
.light .price-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}

.featured {
    /* background: linear-gradient(180deg, var(--primary), var(--secondary)) !important; */
    color: #fff;
}

.price-card .line {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--gray-medium);
}

.price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 6px;
    font-size: 40px;
    font-weight: 900;
    margin-top: 15px !important;
    line-height: 1;
}

@media (min-width: 1024px) {
    .price {
        font-size: 64px;
    }
}

.price-card p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
}

.price-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}

.price-card ul li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-card ul li span {
    font-size: 18px;
}

.mockup {
    margin-top: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.mockup img {
    width: 100%;
    display: block;
}

/* PROCESSO */

.process-header {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 100px;
}

@media(min-width: 1100px) {
    #funcionalidades .process-header {
        position: sticky;
        top: 150px;
        text-align: left;
        margin: 0 !important;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon-wrap {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(37, 99, 235, .08);
}

.process-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
}

.process-step {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 2px;
}

.process-item h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.process-item p {
    max-width: 280px;
    margin: auto;
}

@media(max-width:980px) {

    .process-grid {
        gap: 60px;
    }

    .process-item h3 {
        font-size: 28px;
    }

}

/* DIFERENCIAIS */

.diferenciais-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 70px;
}

#diferenciais .diferencial-card {
    position: relative;
    /* overflow: hidden; */
    transition: .4s;
    border: 1px solid #eceef6;
    border-top: 4px solid var(--primary);
    border-radius: 8px;
    text-align: center;
}

/* .diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
} */

.diferencial-card:hover {
    transform: translateY(-10px);
}

.diferencial-number {
    position: absolute;
    top: -30px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    /* margin-bottom: 20px; */
    background-color: var(--gray-light);
    color: var(--primary);
}

.diferencial-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.diferencial-card p {
    font-size: 16px;
    line-height: 1.8;
}

/* SOLUÇÕES */

#solucoes .cards--solutions {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 60px;
}

#solucoes .cards--solutions .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: all .3 ease-in-out;
}

.card-like {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gray-light);
    color: var(--primary);
    transition: all .3 ease-in-out;
}

.card-like svg {
    width: 100%;
    height: auto;
}

#solucoes .cards--solutions .card h3 {
    font-size: 20px;
}

#solucoes .cards--solutions .card h3,
#solucoes .cards--solutions .card p {
    padding: 0 !important;
    margin: 0 !important;
}

#solucoes .cards--solutions .card:hover {
    background-color: var(--primary);
}

#solucoes .cards--solutions .card:hover .card-like {
    background-color: var(--white);
    color: var(--primary);
}

#solucoes .cards--solutions .card:hover h3,
#solucoes .cards--solutions .card:hover p {
    color: var(--white);
}

#solucoes .cards--solutions .card.card--target {
    background-color: var(--primary);
}

#solucoes .cards--solutions .card.card--target h3,
#solucoes .cards--solutions .card.card--target p {
    color: var(--white);
}

/* FAQ */

.faq-grid {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    width: 100%;
    height: auto;
}

@media(min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* max-width: 950px; */
    margin: auto;
    margin-top: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    /* padding: 28px 0; */
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

.faq-answer {
    display: none;
}

footer {
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    padding: 90px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-grid hr {
    width: 80%;
    height: 1px;
    padding: 0;
    margin: 30px 0;
    border-color: #444444;
}

.footer-info p {
    color: var(--text-muted);
}

footer ul {
    margin-top: 15px;
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
    color: var(--text-muted) !important;
}

footer ul li a {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: .2s;
}

footer ul li a:hover {
    color: var(--primary) !important;
}

/* FORMAS DE PAGAMENTO */

footer .formas-pagamento{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}

footer .formas-pagamento li{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

footer .formas-pagamento svg{
    display: block;
    width: 50px;
    height: auto;
    padding: 0;
    margin: 0;
    opacity: 0.7;
}

footer .formas-pagamento li:nth-child(1) svg{
    transform: scale(.5);
}

footer .formas-pagamento li:nth-child(2) svg{
    transform: scale(.7);
}

footer .formas-pagamento li:nth-child(4) svg{
    width: 65px;
    padding-left: 10px;
}

footer .formas-pagamento li:nth-child(5) svg{
    width: 90px;
    padding-left: 10px;
}

footer .formas-pagamento li:nth-child(6) svg{
    padding-left: 10px;
}

footer .formas-pagamento li:nth-child(7) svg{
    transform: scale(.8);
}

footer .formas-pagamento p{
    margin: 0;
    padding: 0;
    text-align: center;
}

/* COPY */

.copy {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 30px;
    text-align: center;
    color: #777;
}

p.copy__suporte {
    font-family: "Staatliches", sans-serif !important;
    color: var(--white) !important;
    font-weight: 400;
    letter-spacing: 1px;
}

/* FLOATING */

.float-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(37, 211, 102, .4);
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

@media(max-width:980px) {

    nav,
    .header-container .whatsapp-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 25px;
    }

    section {
        padding: 90px 0;
    }

}

/* CLIENTES */

.clientes-section {
    overflow: hidden;
}

.clientes-header {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}

.clientes-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cliente-item {
    height: 160px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.cliente-item:hover {
    transform: translateY(-8px);
}

.cliente-item img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .75;
    transition: .4s;
}

.cliente-item:hover img {
    filter: none;
    opacity: 1;
}

.owl-prev-custom,
.owl-next-custom {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    font-size: 24px;
    cursor: pointer;
    transition: .4s;
    flex-shrink: 0;
}

.owl-prev-custom:hover,
.owl-next-custom:hover {
    background: var(--secondary);
    color: #fff;
}

.clientes-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 22px;
    color: #4b5563;
}

.clientes-footer strong {
    color: #10b981;
    font-weight: 900;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

@media(max-width:980px) {

    .clientes-carousel-wrap {
        gap: 10px;
    }

    .owl-prev-custom,
    .owl-next-custom {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .cliente-item {
        height: 130px;
        border-radius: 8px;
    }

    .cliente-item img {
        max-width: 120px;
    }

    .clientes-footer {
        font-size: 18px;
    }

}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, .2), transparent 35%),
        radial-gradient(circle at bottom right, rgba(168, 85, 247, .18), transparent 35%),
        var(--secondary);
}

.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 85% center; }
@media (min-width: 768px) {
  .hero-bg img {
    object-position: center center;
  }
}
.hero-bg::after { 
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(105deg, rgba(14,14,17,.95) 28%, rgba(14,14,17,.78) 58%, rgba(14,14,17,.5)); 
}
@media (min-width: 768px) {
    .hero-bg::after {
        background: linear-gradient(105deg, rgba(14,14,17,.95) 28%, rgba(14,14,17,.78) 58%, rgba(14,14,17,.1));
    }    
}
.hero-inner { 
    position: relative; 
    z-index: 3; 
    max-width: 720px; 
    padding: 65px 0 0; 
}
@media (min-width: 768px) {
  .hero-inner {
    padding-top: 120px 0 60px;
  }
}
.hero-inner strong { color: var(--quaternary); }
.hero h1 { font-size: 45px; line-height: .98; margin-bottom: 22px; font-weight: 700; letter-spacing: 3px; }
@media(min-width: 1023px){
    .hero h1 { font-size: 72px; }
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 19px; color: #d2d2d8; margin-bottom: 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 46px; display: flex; gap: 38px; flex-wrap: wrap; }
.hero-trust div b { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--primary); display: block; line-height: 1; font-weight: 700; }
.hero-trust div span { font-size: 12px; color: #b0b0b8; letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; display: block; }

/* Seção Diferenciais */

#solucoes {
    position: relative;
}

#solucoes .container {
    position: relative;
    z-index: 2;
}

.solucoes-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* filter: grayscale(1); */
    opacity: .1;
}

/* WHATSAPP */

.whatsapp-widget {
    display: none;
}

@media(min-width:1440px) {
    .whatsapp-widget {
        display: block;
        position: fixed;
        right: 25px;
        bottom: 110px;
        width: 360px;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
        z-index: 9999;
        animation: fadeUp .7s ease;
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

}

.whatsapp-widget-header {
    background: #00e676;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 800;
}

.whatsapp-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.whatsapp-close {
    cursor: pointer;
    font-size: 22px;
}

.whatsapp-widget-body {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.whatsapp-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-message strong {
    display: block;
    margin-bottom: 6px;
    color: var(--secondary);
}

.whatsapp-message p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.float-whatsapp-new {
    display: none;
}

@media(max-width:1440px) {
    .float-whatsapp-new {
        display: block;
        position: fixed;
        right: 25px;
        bottom: 25px;
        width: 78px;
        height: 78px;
        border-radius: 50%;
        background: #00e676;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        box-shadow: 0 20px 60px rgba(0, 230, 118, .4);
        transition: .4s;
    }
}

.float-whatsapp-new:hover {
    transform: scale(1.08);
}

.notification {
    position: absolute;
    top: 2px;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff0033;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid #fff;
}

/* RESPONSIVE */

@media(max-width:980px) {

    .hero-bni h2 {
        font-size: 32px;
        letter-spacing: 0;
    }

    .hero-logo {
        font-size: 52px;
    }

    .hero-description {
        font-size: 19px;
    }

    .hero-info-badge {
        font-size: 14px;
        line-height: 1.6;
        padding: 16px 22px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        font-size: 18px;
        height: 64px;
    }

    .whatsapp-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 100px;
    }

    .float-whatsapp-new {
        width: 68px;
        height: 68px;
    }

}


.whatsapp-box {
    position: fixed;
    right: 20px;
    bottom: 110px;
    left: 20px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    z-index: 9999;
}

@media(min-width:768px) {
    .whatsapp-box {
        width: 350px;
        left: initial;
    }
}

.whatsapp-header {
    height: 50px;
    background: #00e676;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.whatsapp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.whatsapp-title svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.whatsapp-close {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-link {
    text-decoration: none;
}

.whatsapp-body {
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: white;
    border-radius: 8px;
    padding: 28px;
    transition: all 0.3s ease;

    /* Cursor customizado SVG (WhatsApp style) */
    /* Cursor neumórfico - 3D sutil */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 26 26"><defs><filter id="shadow"><feDropShadow dx="1" dy="1" stdDeviation="1" flood-opacity="0.3"/></filter></defs><path d="M5 3L17 11L11.5 11.5L9.5 19L5 3Z" fill="%23e0e0e0" stroke="%23999999" stroke-width="0.8" filter="url(%23shadow)"/><path d="M7 5L14 10L10.5 10.5L9 15.5L7 5Z" fill="%23f5f5f5"/></svg>') 5 3, pointer;
    position: relative;
    overflow: hidden;

}

.whatsapp-body:hover {
    animation: neoPulse 1s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    /* Cursor neumórfico com destaque */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 22 24"><defs><linearGradient id="modernGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%2325D366"/><stop offset="100%" stop-color="%23128C7E"/></linearGradient></defs><path d="M2 1.5L16 10.5L9.5 11L7.5 19.5L2 1.5Z" fill="url(%23modernGrad)" stroke="%23ffffff" stroke-width="1"/></svg>') 3 2, pointer;
}

@keyframes neoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }
}

.whatsapp-body img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-content strong {
    display: block;
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 8px;
}

.whatsapp-content p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 15px 40px rgba(0, 230, 118, .45);
}

.whatsapp-button svg {
    fill: #fff;
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 230, 118, .45);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 55px rgba(0, 230, 118, .60);
    }
}

.testimonials-section {
    position: relative;
    padding: 100px 20px;
    background: #0f1115;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1280px;
    margin: 20px auto 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-description {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

/* CARD */

.testimonial-card {
    background: #171a21;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.testimonial-photo {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.testimonial-company {
    font-size: 14px;
    color: #8fb8ff;
    font-weight: 600;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
}

/* OWL */

.testimonials-carousel .owl-stage {
    display: flex;
}

.testimonials-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonials-carousel .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.testimonials-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    display: block;
    border-radius: 50%;
    margin: 0 6px;
    transition: all .3s ease;
}

.testimonials-carousel .owl-dot.active span {
    background: #ffffff;
    transform: scale(1.2);
}

.testimonials-carousel .owl-nav {
    display: none;
}

/* RESPONSIVO */

@media(max-width:768px) {

    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-photo {
        width: 75px;
        height: 75px;
    }

    .testimonial-info {
        width: 100%;
    }

}

/* SERVIÇOS ADICIONAIS */

.servicos-adicionais {
    margin-top: 52px;
    margin-bottom: 40px;
}

/* POLICIES HERO */

.policies-hero {
    padding: 200px 0 0;
}

.policies-section .process-header {
    text-align: left;
    max-width: 100%;
}

.policies-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* TERMS HERO */

.terms-hero {
    padding: 200px 0 120px;
}

.section-topic {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

/* =====================================================================
   INCORPORADO DE modelos.css  (movido para cá na reestruturação)
   Estilos das seções do index.html PRINCIPAL: Funcionalidades,
   "Modelos disponíveis" (carrossel + modal de preview), Avaliações
   Google, Planos GBB + tabela comparativa e Instagram.
   Obs.: modelos.css não continha CSS específico de modelos individuais
   (cada modelo já tem seu próprio CSS), portanto todo o conteúdo é do
   projeto principal e foi consolidado aqui em custom.css.
   ===================================================================== */
/* =====================================================================
   Base Profissional — UPGRADE PACK
   Funcionalidades · Modelos disponíveis (carousel + modal) ·
   Depoimentos · Avaliações Google · Planos GBB + tabela comparativa
   Carrega DEPOIS de custom.css. Não altera nenhuma regra existente.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. FUNCIONALIDADES  (estilo funcionalidades.jpeg)
   --------------------------------------------------------------------- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

@media(min-width: 1100px) {
    #funcionalidades .features-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0px;
    }
}

.feature-card {
    position: relative;
    background: #f5f6fb;
    border: 1px solid #eceef6;
    border-top: 4px solid var(--primary);
    border-radius: 8px;
    padding: 40px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(37, 99, 235, .12);
}

.feature-card h3 {
    font-size: 20px;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--we-ink-soft);
    margin-top: 0;
}

.feature-chip {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    background: #e7e9f3;
    color: #334155;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------------
   2. MODELOS DISPONÍVEIS — carousel (estilo owl-carousel-modelo.jpeg)
   --------------------------------------------------------------------- */

.modelos-section {
    overflow: hidden;
}

.modelos-carousel {
    margin-top: 64px;
}

.modelo-card {
    background: #fff;
    border: 1px solid var(--we-line);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.modelo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, .14);
    border-color: #cfd6e6;
}

.modelo-thumb {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #eef1f7;
}

.modelo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.modelo-card:hover .modelo-thumb img {
    transform: scale(1.06);
}

.modelo-thumb .modelo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(5, 5, 5, .78);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.modelo-thumb .modelo-num-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}

.modelo-thumb .modelo-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg, rgba(37, 99, 235, .0), rgba(37, 99, 235, .82)); */
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: opacity .35s ease;
}

.modelo-card:hover .modelo-hover {
    opacity: 1;
}

.modelo-hover span {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    transform: translateY(10px);
    transition: transform .35s ease;
}

.modelo-card:hover .modelo-hover span {
    transform: translateY(0);
}

.modelo-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modelo-body h3 {
    font-size: 21px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.modelo-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--we-ink-soft);
    margin: 0 0 16px;
    flex: 1;
}

.modelo-link {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.modelo-link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s ease;
}

.modelo-card:hover .modelo-link svg {
    transform: translateX(4px);
}

/* setas + dots */
.modelos-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.modelos-arrow {
    width: 52px;
    height: 48px;
    border: 1px solid var(--we-line);
    background: #fff;
    border-radius: 8px;
    font-size: 20px;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.modelos-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.modelos-carousel .owl-dots {
    text-align: center;
    margin-top: 22px;
}

.modelos-carousel .owl-dot span {
    width: 22px;
    height: 6px;
    background: #d4d9e6;
    display: block;
    border-radius: 8px;
    margin: 0 4px;
    transition: .3s;
}

.modelos-carousel .owl-dot.active span {
    background: var(--primary);
    width: 30px;
}

.modelos-carousel .owl-nav {
    display: none;
}

/* ---------------------------------------------------------------------
   3. MODAL DE PREVIEW  (estilo modal-modelo.jpeg + iframe scroll)
   --------------------------------------------------------------------- */

.modelo-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modelo-modal.open {
    display: flex;
}

.modelo-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 22, .82);
    backdrop-filter: blur(4px);
    animation: weFade .3s ease;
}

@keyframes weFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modelo-modal__panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    height: min(86vh, 760px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
    animation: weZoom .35s cubic-bezier(.2, .8, .2, 1);
}

@keyframes weZoom {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modelo-modal__frame {
    position: relative;
    background: #eef1f7;
    overflow: hidden;
}

.modelo-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.modelo-modal__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 15px;
    pointer-events: none;
}

.modelo-modal__frame .spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #d7deea;
    border-top-color: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    animation: weSpin .8s linear infinite;
}

@keyframes weSpin {
    to {
        transform: rotate(360deg);
    }
}

.modelo-modal__info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modelo-modal__num {
    align-self: flex-start;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 6px 13px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.modelo-modal__info .eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.modelo-modal__info h3 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 18px;
}

.modelo-modal__info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--we-ink-soft);
    margin: 0 0 14px;
}

.modelo-modal__meta {
    list-style: none;
    margin: 6px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modelo-modal__meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.modelo-modal__meta svg {
    width: 18px;
    height: 18px;
    color: #16a34a;
    flex-shrink: 0;
}

.modelo-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #25d366, #12b657);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(18, 182, 87, .35);
    transition: .3s;
}

.modelo-modal__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(18, 182, 87, .45);
}

.modelo-modal__cta svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.modelo-modal__newtab {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.modelo-modal__newtab:hover {
    text-decoration: underline;
}

.modelo-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: var(--bg);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.modelo-modal__close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 880px) {
    .modelo-modal {
        padding: 0;
    }

    .modelo-modal__panel {
        grid-template-columns: 1fr;
        grid-template-rows: 52vh auto;
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
        overflow-y: auto;
    }

    .modelo-modal__frame {
        min-height: 52vh;
    }

    .modelo-modal__info {
        padding: 32px 24px 40px;
    }

    .modelo-modal__info h3 {
        font-size: 25px;
    }
}

body.we-modal-open {
    overflow: hidden;
}

/* ---------------------------------------------------------------------
   4. AVALIAÇÕES GOOGLE  (5 estrelas)
   --------------------------------------------------------------------- */

.reviews-head-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--we-line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.reviews-head-google .gscore {
    font-weight: 900;
    font-size: 20px;
    color: var(--secondary);
}

.reviews-head-google .gstars {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 17px;
}

.reviews-head-google .gcount {
    font-size: 14px;
    color: var(--we-ink-soft);
}

.reviews-carousel {
    margin-top: 56px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--we-line);
    border-radius: 16px;
    padding: 32px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Owl força '.owl-item img{width:100%}' e achatava o avatar num oval —
   regra de maior especificidade mantém o avatar circular 54x54. */
.reviews-carousel .owl-item img.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.review-id {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 800;
    color: var(--secondary);
    font-size: 16px;
}

.review-when {
    font-size: 13px;
    color: #94a3b8;
}

.review-gicon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.review-stars {
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    flex: 1;
}

.review-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #f0f2f7;
    font-size: 13.5px;
    color: var(--we-ink-soft);
    font-weight: 600;
}

.review-foot svg {
    width: 16px;
    height: 16px;
}

.reviews-carousel .owl-stage {
    display: flex;
}

.reviews-carousel .owl-item {
    display: flex;
    height: auto;
}

.reviews-carousel .owl-dots {
    text-align: center;
    margin-top: 36px;
}

.reviews-carousel .owl-dot span {
    width: 11px;
    height: 11px;
    background: #d4d9e6;
    display: block;
    border-radius: 50%;
    margin: 0 5px;
    transition: .3s;
}

.reviews-carousel .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.25);
}

.reviews-carousel .owl-nav {
    display: none;
}

/* ---------------------------------------------------------------------
   5. PLANOS GBB + TABELA COMPARATIVA
   --------------------------------------------------------------------- */

/* ---- carousel dos planos (Owl, sem autoplay) ---- */

.plans-carousel-wrap {
    position: relative;
    margin-top: 26px;
}

.plans-carousel {
    width: 100%;
}

/* respiro vertical no stage para o selo "Mais popular", a sombra
   e o scale(1.04) do card em destaque não serem cortados pelo overflow */
.plans-carousel .owl-stage-outer {
    padding: 44px 0 120px;
    margin-bottom: -22px;
}

.plans-carousel .owl-stage {
    padding: 0 20px !important;
}

.plans-carousel .owl-stage {
    display: flex;
}

.plans-carousel .owl-item {
    display: flex;
    height: auto;
}

.plans-carousel .owl-item .plan-card {
    width: 100%;
}

.plans-carousel .owl-nav {
    display: none;
}

.plans-carousel .owl-dots {
    text-align: center;
    margin-top: -40px;
}

.plans-carousel .owl-dot span {
    width: 22px;
    height: 6px;
    background: #d4d9e6;
    display: block;
    border-radius: 8px;
    margin: 0 4px;
    transition: .3s;
}

.plans-carousel .owl-dot.active span {
    background: var(--primary);
    width: 30px;
}

/* setas */
.plans-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.plans-arrow {
    width: 52px;
    height: 48px;
    border: 1px solid var(--we-line);
    background: #fff;
    border-radius: 8px;
    font-size: 20px;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.plans-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.plans-arrow.is-disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

/* Plan Card */

.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--we-line);
    border-radius: 8px;
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}

.plan-card.featured {
    border: 2px solid var(--primary);
}

@media (min-width: 1024px) {
    .plan-card.featured {
        transform: scale(1.04);
    }

    .plan-card.featured:hover {
        transform: scale(1.04);
    }
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 8px 18px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
}

.plan-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 14.5px;
    color: var(--we-ink-soft);
    margin: 0 0 22px;
    line-height: 1.5;
    min-height: 44px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    font-size: 46px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.small-price{
    font-size: 30px !important;
}

.plan-price small {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: var(--we-ink-soft);
    margin-bottom: 6px;
}

.plan-price small.asterisk{
    height: 41px;
    margin-bottom: initial;
}

.plan-cycle {
    font-size: 13.5px;
    color: var(--we-ink-soft);
    margin-bottom: 26px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.4;
}

.plan-features li svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-features li.yes svg {
    color: #16a34a;
}

/* .plan-features li.no {
    color: #aab2c0;
} */

.plan-features li.no svg {
    color: var(--red);
}

p.tabela-plus {
    display: block;
    width: 100%;
    margin: 10px 0 15px;
    font-size: 14px;
    color: var(--primary);
    text-align: center;
}

.plan-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s;
}

.plan-cta.is-ghost {
    background: #f3f5fb;
    color: var(--secondary);
    border: 1px solid var(--we-line);
}

.plan-cta.is-ghost:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.plan-cta.is-primary {
    background: linear-gradient(135deg, #25d366, #12b657);
    color: #fff;
    box-shadow: 0 16px 38px rgba(18, 182, 87, .32);
}

.plan-cta.is-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(18, 182, 87, .42);
}

.plan-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.plans-note {
    text-align: center;
    margin-top: 34px;
    font-size: 15px;
    color: var(--we-ink-soft);
}

.plans-note strong {
    color: #16a34a;
}

/* divisor "Preciso de mais" */
.plans-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 760px;
    margin: 58px auto 40px;
}

.plans-divider::before,
.plans-divider::after {
    content: "";
    flex: 1;
    height: 1px;
}

.plans-divider::before {
    background: linear-gradient(90deg, transparent, var(--we-line));
}

.plans-divider::after {
    background: linear-gradient(90deg, var(--we-line), transparent);
}

.plans-divider span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--we-ink-soft);
    white-space: nowrap;
}

/* card Pacote Personalizado / Premium */
.premium-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 42px;
    background: linear-gradient(135deg, #0f172a 0%, #1b2745 58%, #243154 100%);
    border: 1px solid rgba(37, 99, 235, .35);
    border-radius: 8px;
    padding: 48px 46px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .35);
}

.premium-card::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -90px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37, 99, 235, .20), transparent 70%);
    pointer-events: none;
}

.premium-main {
    position: relative;
    z-index: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, .14);
    color: var(--white);
    border: 1px solid rgba(37, 99, 235, .4);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.premium-title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}

.premium-title span {
    color: var(--primary);
}

.premium-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: #cbd5e1 !important;
    margin: 0 0 26px;
    max-width: 540px;
}

.premium-desc strong {
    color: var(--white);
    font-weight: bold;
}

.premium-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 26px;
    margin: 0;
    padding: 0;
}

.premium-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14.5px;
    color: #e2e8f0;
    line-height: 1.4;
}

.premium-features li svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary);
}

.premium-aside {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 34px 30px;
}

.premium-price-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.premium-price {
    font-family: "Staatliches", sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.premium-price-sub {
    font-size: 13.5px;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 26px;
}

.premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    color: var(--secondary);
    background: var(--green);
    transition: .3s;
}

.premium-cta:hover {
    transform: translateY(-3px);
    background: var(--white)
}

.premium-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.premium-foot {
    margin-top: 16px;
    font-size: 12.5px;
    color: #94a3b8;
}

@media (max-width: 980px) {
    .premium-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 38px 26px;
    }

    .premium-features {
        grid-template-columns: 1fr;
    }

    .premium-title {
        font-size: 25px;
    }

    .plans-divider {
        margin: 46px auto 34px;
    }
}

/* tabela comparativa */
.compare-wrap {
    margin-top: 80px;
}

.compare-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 30px;
}

.compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--we-line);
    border-radius: 16px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* 720px */
    background: #fff;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eef1f6;
    font-size: 15px;
}

.compare-table thead th {
    background: #f7f9fc;
    color: var(--secondary);
    font-weight: 800;
    font-size: 15px;
    vertical-align: bottom;
}

.compare-table thead th span {
    font-size: 13px;
    font-weight: 600;
    color: var(--we-ink-soft);
}

.compare-table thead th span.compare-pill {
    display: block;
    margin-top: -4px;
}

.compare-price{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    color: var(--we-ink-soft);
}

.compare-price svg{
    width: 20px;
}

.compare-table thead th.pop {
    color: var(--primary);
}

.compare-table tbody th {
    font-weight: 700;
    color: var(--secondary);
}

.compare-table tbody th .compare-hint {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 3px;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
    border-bottom: none;
}

.compare-table td {
    color: var(--we-ink-soft);
}

.compare-table .ok {
    color: #16a34a;
    font-weight: 800;
}

.compare-table .nope {
    color: #cbd5e1;
    font-weight: 800;
}

.compare-table .col-pop {
    background: rgba(37, 99, 235, .04);
}

.compare-table thead th span.compare-pill {
    display: inline-block;
    margin-left: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 3px;
    vertical-align: middle;
}

@media (max-width: 980px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-desc {
        min-height: auto;
    }
}

/* ---------------------------------------------------------------------
   6. INSTAGRAM — feed carousel (links para o perfil)
   --------------------------------------------------------------------- */

.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: .25s;
}

.insta-handle svg {
    width: 20px;
    height: 20px;
}

.insta-handle:hover {
    color: #d62976;
}

.insta-carousel {
    margin-top: 56px;
}

.insta-post {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #eef1f7;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.insta-post::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(79, 91, 213, 0) 10%, rgba(214, 41, 118, .58) 65%, rgba(250, 126, 30, .58));
    opacity: 0;
    transition: opacity .35s ease;
}

.insta-post:hover img {
    transform: scale(1.07);
}

.insta-post:hover::after {
    opacity: 1;
}

.insta-ic {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    opacity: 0;
    transform: scale(.85);
    transition: .35s ease;
    z-index: 2;
}

.insta-ic svg {
    width: 40px;
    height: 40px;
}

.insta-post:hover .insta-ic {
    opacity: 1;
    transform: scale(1);
}

.insta-carousel .owl-stage {
    display: flex;
}

.insta-carousel .owl-item {
    display: flex;
    height: auto;
}

.insta-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.insta-carousel .owl-dot span {
    width: 11px;
    height: 11px;
    background: #d4d9e6;
    display: block;
    border-radius: 50%;
    margin: 0 5px;
    transition: .3s;
}

.insta-carousel .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.25);
}

.insta-carousel .owl-nav {
    display: none;
}

.insta-cta {
    text-align: center;
    margin-top: 44px;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #feda75, #fa7e1e 26%, #d62976 56%, #962fbf 80%, #4f5bd5);
    box-shadow: 0 16px 38px rgba(214, 41, 118, .32);
    transition: .3s;
}

.insta-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(214, 41, 118, .45);
}

.insta-follow-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 600px) {
    .insta-ic svg {
        width: 30px;
        height: 30px;
    }
}

/* ESTILOS DO CONTEÚDO JURÍDICO (sobre o layout do site) */
.legal-section .process-header {
    margin-bottom: 60px;
}

.legal-section .section-topic h3 {
    font-size: 22px;
    line-height: 1.3;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
}

.legal-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.legal-meta {
    font-size: 15px;
    color: #8a93a3;
}

.legal-meta strong {
    color: #3a4252;
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
    margin: 0;
}

.legal-list li {
    position: relative;
    padding-left: 46px;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--we-ink-soft);
    text-align: left;
}

.legal-list li .n {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--primary);
    font-size: 15.5px;
}

.legal-list li b {
    color: var(--secondary);
    font-weight: 700;
}

.legal-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    margin: 0;
}

.legal-bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--we-ink-soft);
    text-align: left;
}

.legal-bullets li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.legal-bullets.is-warn li::before {
    background: #d97706;
}

.legal-note {
    width: 100%;
    background: #eef4ff;
    border: 1px solid #cfe0ff;
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #1e3a8a;
}

.legal-warn {
    width: 100%;
    background: #fff7ed;
    border: 1px solid #fcd9a8;
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 15.5px;
    line-height: 1.6;
    color: #9a3412;
}

.plan-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    margin: 4px 0;
}

.plan-pill {
    background: #fff;
    border: 1px solid var(--we-line);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 700;
}

.plan-pill .pr {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.plan-pill.is-pop {
    border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(37, 99, 235, .10);
}

.legal-section .compare-wrap {
    width: 100%;
    margin-top: 8px;
}

.legal-section .compare-scroll {
    width: 100%;
}

.legal-section .compare-title {
    text-align: left;
    font-size: 20px;
}

.legal-cta {
    width: 100%;
    background: #0f1b2d;
    border-radius: 16px;
    padding: 30px 32px;
}

.legal-cta h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
    border: 0;
    padding: 0;
}

.legal-cta p {
    color: #b9c6e0;
    font-size: 16px;
    margin-bottom: 18px;
}

.legal-cta .wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1fb255;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 26px;
    border-radius: 8px;
}

.legal-cta .wa svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

@media (max-width: 680px) {
    .legal-section .section-topic h3 {
        font-size: 19px;
    }

    .legal-list li,
    .legal-bullets li {
        font-size: 15.5px;
    }

    .legal-list li {
        padding-left: 40px;
    }
}


/* CTA Prpe Footer */

.cta {
    position: relative;
    isolation: isolate;
    text-align: center;
    color: var(--white);
    min-height: clamp(520px, 68vh, 660px);
    display: grid;
    place-items: center;
    padding: 0;
    background-image: url("../img/base_profissional_reuniao.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* parallax: image stays fixed while page scrolls */
    background-color: #0a080c;
}

/* fallback tone before the photo loads */
/* Dark overlay so the white copy stays legible over the city lights */
@media(min-width: 768px) {
    .cta {
        padding: clamp(4rem, 9vw, 7rem) 1.25rem;
    }
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(130% 120% at 50% 42%, rgba(6, 4, 10, .46) 0%, rgba(6, 4, 10, .74) 100%)
}

.cta__inner {
    max-width: 820px;
    margin-inline: auto;
    background: rgba(0, 0, 0, .55);
    /* padding: 30px 20px; */
    padding: 80px 20px;
}

@media(min-width: 768px) {
    .cta__inner {
        padding: 50px 40px;
        border-radius: 8px;
    }
}

.cta__eyebrow {
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-size: .86rem;
    color: var(--primary);
    margin: 0 0 1.4rem
}

.cta__title {
    font-family: var(--font);
    font-weight: 700;
    color: var(--white);
    font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    line-height: 1.15;
    margin: 0 0 1.5rem
}

.cta__text {
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
    max-width: 760px;
    margin: 0 auto 2.4rem
}

.cta__btn {
    display: inline-block;
    text-decoration: none !important;
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .92rem;
    color: var(--white);
    padding: 1.15rem 2.6rem;
    border: 1px solid rgba(255, 255, 255, .55);
    background: transparent;
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

.cta__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta__btn:focus-visible {
    outline: none;
    border-radius: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .55), 0 0 0 6px rgba(255, 255, 255, .9)
}

/* Fixed backgrounds are janky/unsupported on most touch devices → scroll */
@media (max-width:768px),
(hover:none) {
    .cta {
        background-attachment: scroll
    }
}

/* =========================
    OVERLAY
========================= */

.cookie-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    display: block;
    background: transparent;
    padding: 20px;    
    opacity: 1;
    visibility: visible;    
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 2222;
}

.cookie-overlay.cookie-hidden {
    opacity: 0;
    visibility: hidden;
}


/* =========================
    MODAL
========================= */

.cookie-modal {
    position: absolute;
    left: 20px;
    bottom: 120px;
    pointer-events: visible;
    width: calc(100vw - 40px);
    max-width: 450px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
    overflow: hidden;
}

/* =========================
    HEADER
========================= */

.cookie-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(0,0,0,.4);
    color: var(--white);
}

.cookie-header-icons{
    display: none;
}
@media(min-width: 700px){
    .cookie-header-icons{
        display: block;
    }
}

.cookie-header-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.cookie-header-icon path,
.cookie-header-icon circle{
    fill: var(--white);
}

.cookie-header h2 {
    margin: 0;
    font-size: 20px;
}


/* =========================
    CONTENT
========================= */

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    padding: 0 30px 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 16px;
}

.cookie-privacy-link {
    display: inline-block;
    width: fit-content;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 7px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.cookie-privacy-link:hover {
    background: var(--white);
    color: var(--secondary);
}


/* =========================
    POLICY
========================= */

.cookie-policy {
    border-top: 2px solid rgba(255,255,255,.25);
    border-bottom: 2px solid rgba(255,255,255,.25);
}

.cookie-policy-button {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    padding: 30px 45px;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.cookie-policy-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.cookie-policy-arrow {
    margin-left: auto;
    font-size: 22px;
    transition: transform .2s ease;
}

.cookie-policy.open .cookie-policy-arrow {
    transform: rotate(180deg);
}

.cookie-policy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.cookie-policy.open .cookie-policy-content {
    max-height: 400px;
}

.cookie-policy-content-inner {
    padding: 0 45px 30px;
    color: #ddd;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================
    BUTTON
========================= */

/* .cookie-actions {
    padding: 50px;
} */

.cookie-accept {
    width: 100%;
    border: 0;
    background: var(--primary);
    color: var(--secondary);
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease;
}

.cookie-accept:hover {
    filter: brightness(1.08);
}

.cookie-accept:active {
    transform: scale(.98);
}

/* Botão flutuante de cookies */
.cookie-floating-button {
    position: fixed;
    left: 20px;
    bottom: 20px;

    width: 70px;
    height: 70px;

    border: 0;
    border-radius: 50%;

    background: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 9999;
}

.cookie-floating-button svg {
    width: 50px;
    height: 50px;
}


/* =========================
    MOBILE
========================= */

@media (max-width: 700px) {

    .cookie-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .cookie-modal {
        border-radius: 8px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .cookie-header {
        padding: 24px;
        gap: 14px;
    }

    .cookie-header-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .cookie-header h2 {
        font-size: 24px;
    }

    .cookie-content {
        padding: 0px 24px;
    }

    .cookie-content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .cookie-privacy-link {
        font-size: 17px;
    }

    .cookie-policy-button {
        padding: 22px 24px;
        font-size: 18px;
    }

    .cookie-policy-content-inner {
        padding: 0 24px 24px;
    }

    .cookie-actions {
        padding: 28px 24px 24px;
    }

    .cookie-accept {
        padding: 10px;
        font-size: 21px;
    }
}

/* CARROSSEL (reset) */

#modelos .owl-carousel .owl-stage-outer {
    overflow: initial !important;
}