
:root {
    --primary: #2563eb;
    --secondary: #0f172a;
    --text: #f3f4f6;
    --text-muted: #9ca3af;
    --bg: #020617;
    --bg-card: #0f1722;
    --border: #1e293b;
    --white: #ffffff;
    --green: #25d366;
    --blue-sky: #00d2ff;
    --gray-medium: #efefef;
    --gray-light: #f9f9f9;
    --purple: #7c3aed;
    --pink: #ec4899;
    --red: #ff0000;
    --orange: #ff9f00;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #050505;
}

/* HEADER */

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

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

.header-container {
    width: 92%;
    max-width: 1300px;
    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 svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

nav ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    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: 10px;
}

.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: 60px;
    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: 10px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #050505;
    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-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.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;
}

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

.dark {
    background: #050505;
    color: #fff;
}

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

.light {
    background: #fff;
    color: #111;
}

.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    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;
    font-weight: 800;
}

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

.dark p {
    color: #b8b8b8;
}

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

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

.gray p,
.light p {
    color: #555;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    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%),
        #050505;
}

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

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

.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(--primary);
    transition: .4s;
}

.cards--links > a:hover h3{
    color: var(--gray-light);
}

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

.dark .card {
    background: #111;
}

.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;
}

.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: 10px;
    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), #111827) !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: 10px;
    overflow: hidden;
}

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

/* PROCESSO */

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

.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: 10px;
    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: 10px;
    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;
    font-weight: 800;
    letter-spacing: 2px;
}

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

.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;
}

.diferencial-card {
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.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 {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #60a5fa;
}

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

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

@media(max-width:768px) {

    .diferencial-card h3 {
        font-size: 22px;
    }

}

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

.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: 10px;
    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: #050505;
    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-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;
}

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

.copy__suporte a{
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: bold;
    transition: all .2s ease-in-out;
}

.copy__suporte a:hover{
    color: var(--gray-light) !important;
}

/* 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: #111827;
    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: 36px;
    }

    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: 10px;
    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: #111827;
    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: 10px;
    }

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

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

}


/* HERO */

.hero-bni {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, .82)),
        radial-gradient(circle at top center, rgba(124, 58, 237, .25), transparent 40%);
    z-index: 2;
}

.hero-center {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1050px;
    margin: auto;
}

.hero-mini-badge {
    display: none;
}

@media(min-width:980px) {
    .hero-mini-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 26px;
        border-radius: 60px;
        border: 1px solid rgba(255, 255, 255, .15);
        background: rgba(255, 255, 255, .06);
        backdrop-filter: blur(15px);
        color: #fff;
        font-weight: 600;
        letter-spacing: 1px;
    }
}

.hero-mini-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.hero-logo {
    font-size: 82px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -4px;
}

.hero-bni h1 {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    margin: 35px auto;
}

.hero-bni h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 1000px;
    margin: auto;
    font-size: 22px;
    line-height: 1.7;
    color: #d1d5db;
}

.hero-description strong {
    color: #fff;
    font-style: italic;
}

.hero-description strong span{
    color: var(--primary);
}

.hero-info-badge {
    display: none;
}

@media(min-width:980px) {
    .hero-info-badge {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 18px 34px;
        border-radius: 60px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .08);
        backdrop-filter: blur(20px);
        color: #fff;
        margin-top: 40px;
        font-weight: 600;
    }
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    height: 72px;
    padding: 0 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .4s;
}

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

.hero-btn-primary {
    background: #00e676;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 230, 118, .35);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #000;
}

.hero-location {
    margin-top: 40px;
    color: #9ca3af;
    font-size: 18px;
}

.hero-scroll {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    color: #fff;
    font-size: 36px;
    opacity: .7;
    animation: float 2s infinite;
    text-decoration: none;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* WHATSAPP */

.whatsapp-widget {
    display: none;
}

@media(min-width:1440px) {
    .whatsapp-widget {
        display: block;
        position: fixed;
        right: 25px;
        bottom: 110px;
        width: 360px;
        border-radius: 10px;
        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: #111827;
}

.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 h1 {
        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: 10px;
    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: 20px;
    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: #111827;
    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: 78px;
    height: 78px;
    border-radius: 50%;
    background: #00e676;
    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: 45px;
    height: 45px;
}

.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: 100px;
}

/* 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;
}

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