* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #ef0014;
    --red-dark: #d90012;
    --green: #22b957;
    --dark: #101828;
    --text: #5d6b82;
    --muted: #f6f8fb;
    --border: #e7ebf2;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    height: 74px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(231, 235, 242, .75);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(239, 0, 20, .35);
}

.logo b {
    color: var(--red);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 800;
    color: #667085;
}

.nav-menu a {
    transition: .2s ease;
}

.nav-menu a:hover {
    color: var(--red);
}

.header-btn {
    background: var(--red);
    color: #fff;
    padding: 15px 24px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(239, 0, 20, .25);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--red);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 22px;
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, #fff 0%, #fff 57%, #fff4f5 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 85%, transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}

.hero-badge {
    width: fit-content;
    border: 1px solid rgba(239, 0, 20, .25);
    background: rgba(239, 0, 20, .06);
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    border-radius: 999px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero h2 {
    font-size: clamp(23px, 2vw, 31px);
    margin-bottom: 28px;
    font-weight: 900;
}

.hero p {
    max-width: 620px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.btn {
    min-height: 58px;
    padding: 0 30px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 32px rgba(239, 0, 20, .28);
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 14px 32px rgba(34, 185, 87, .28);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .9);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
    min-height: 440px;
}

.browser-card {
    position: absolute;
    top: 40px;
    right: 0;
    width: 690px;
    max-width: 100%;
    height: 360px;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(16, 24, 40, .13);
    padding: 52px 28px 28px;
}

.browser-dots {
    position: absolute;
    top: 22px;
    left: 26px;
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f97066;
}

.browser-dots span:nth-child(2) {
    background: #fdb022;
}

.browser-dots span:nth-child(3) {
    background: #32d583;
}

.browser-inner {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    padding: 28px;
    overflow: hidden;
}

.line-red {
    width: 120px;
    height: 8px;
    border-radius: 20px;
    background: var(--red);
    margin-bottom: 16px;
}

.line-dark {
    width: 430px;
    max-width: 90%;
    height: 22px;
    border-radius: 4px;
    background: #2f3545;
    margin-bottom: 12px;
}

.line-gray {
    width: 290px;
    max-width: 70%;
    height: 12px;
    border-radius: 5px;
    background: #d1d5db;
    margin-bottom: 24px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.mini-card {
    height: 64px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.mini-card.active {
    background: #fff0f1;
    border-color: rgba(239, 0, 20, .25);
}

.content-row {
    display: flex;
    gap: 20px;
}

.phone-preview {
    width: 110px;
    height: 205px;
    background: #fff;
    border: 6px solid #fff;
    outline: 1px solid #e5e7eb;
    border-radius: 32px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .12);
    padding: 18px 12px;
}

.phone-preview div {
    height: 7px;
    background: #d1d5db;
    border-radius: 999px;
    margin-bottom: 10px;
}

.phone-preview div:first-child {
    width: 60%;
    background: #667085;
}

.phone-preview .phone-btn {
    height: 48px;
    background: var(--red);
    border-radius: 12px;
}

.browser-bottom {
    flex: 1;
    padding-top: 80px;
}

.browser-bottom div:first-child {
    width: 140px;
    height: 32px;
    background: var(--red);
    border-radius: 12px;
    margin-bottom: 12px;
}

.browser-bottom div:last-child {
    width: 95px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(16, 24, 40, .12);
    z-index: 5;
}

.floating-card strong {
    display: block;
    color: #98a2b3;
    font-size: 12px;
}

.floating-card span {
    display: block;
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
}

.card-clientes {
    left: 0;
    top: 95px;
}

.card-google {
    right: -15px;
    top: 170px;
}

.card-vendas {
    right: -25px;
    bottom: 40px;
}

/* SEÇÕES */

.section {
    padding: 90px 0;
}

.section.light {
    background: #f8fafc;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-title span,
.section-label,
.cta-box span {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title h2,
.seo-grid h2,
.responsive-grid h2,
.cta-box h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 10px 0 14px;
}

.section-title p,
.seo-grid p,
.responsive-grid p,
.cta-box p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, .06);
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(16, 24, 40, .1);
}

.card .icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(239, 0, 20, .08);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text);
    line-height: 1.6;
}

/* SERVIÇOS */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .04);
}

/* SEO */

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.check-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.check-list li {
    color: var(--dark);
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 18px;
}

.seo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(16, 24, 40, .09);
}

.search-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    color: #667085;
    font-weight: 800;
    margin-bottom: 18px;
}

.result-card {
    height: 82px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #f9fafb;
    margin-bottom: 14px;
}

.result-card.active {
    height: auto;
    background: rgba(239, 0, 20, .06);
    border-color: rgba(239, 0, 20, .18);
    padding: 20px;
}

.result-card.active strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.result-card.small {
    width: 72%;
}

/* RESPONSIVO SECTION */

.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.device-card {
    min-height: 380px;
    position: relative;
    background: linear-gradient(135deg, #fff, #fff2f3);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(16, 24, 40, .08);
    overflow: hidden;
}

.desktop-device {
    position: absolute;
    left: 54px;
    top: 70px;
    width: 360px;
    height: 220px;
    background: #fff;
    border: 12px solid #111827;
    border-radius: 18px;
    padding: 24px;
}

.desktop-device div {
    height: 80px;
    background: var(--red);
    border-radius: 14px;
    margin-bottom: 18px;
}

.desktop-device span {
    display: block;
    height: 18px;
    background: #d1d5db;
    border-radius: 999px;
}

.mobile-device {
    position: absolute;
    right: 55px;
    bottom: 55px;
    width: 120px;
    height: 210px;
    background: #fff;
    border: 8px solid #111827;
    border-radius: 28px;
    padding: 20px 12px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .18);
}

.mobile-device div {
    height: 55px;
    background: var(--red);
    border-radius: 14px;
    margin-bottom: 14px;
}

.mobile-device span {
    display: block;
    height: 10px;
    background: #d1d5db;
    border-radius: 999px;
    margin-bottom: 10px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.stats div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
}

.stats strong {
    display: block;
    color: var(--red);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stats span {
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

/* PROCESSO */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 130px;
    height: 130px;
    background: rgba(239, 0, 20, .07);
    border-radius: 50%;
}

.step span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}

.step h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text);
    line-height: 1.6;
}

/* CTA */

.cta {
    padding: 80px 0;
}

.cta-box {
    background:
        radial-gradient(circle at top right, rgba(239, 0, 20, .32), transparent 35%),
        linear-gradient(135deg, #101828, #202939);
    color: #fff;
    border-radius: 30px;
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

.cta-box p {
    color: #cbd5e1;
}

/* FOOTER */

.site-footer {
    background: #0b1220;
    color: #fff;
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    max-width: 420px;
    color: #cbd5e1;
    margin-top: 18px;
    line-height: 1.6;
}

.footer-logo .logo-icon {
    box-shadow: none;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact p {
    color: #cbd5e1;
    font-size: 15px;
}

.footer-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 20px;
    color: #94a3b8;
    font-size: 14px;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
    .hero-grid,
    .seo-grid,
    .responsive-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 390px;
    }

    .browser-card {
        position: relative;
        top: 0;
        margin: 0 auto;
    }

    .card-clientes {
        left: 30px;
    }

    .card-google,
    .card-vendas {
        right: 30px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-menu,
    .header-btn {
        display: none;
    }

    body.menu-open .nav-menu {
        display: flex;
        position: fixed;
        top: 84px;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 20px 60px rgba(16, 24, 40, .16);
    }

    .cards,
    .services-grid,
    .steps,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1320px);
    }

    .site-header {
        height: 70px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 48px 0;
        gap: 35px;
    }

    .hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;
    }

    .browser-card {
        height: 260px;
        padding: 42px 18px 18px;
    }

    .browser-inner {
        padding: 18px;
    }

    .line-dark {
        height: 16px;
    }

    .cards-row {
        gap: 8px;
    }

    .mini-card {
        height: 48px;
    }

    .phone-preview {
        width: 78px;
        height: 150px;
        border-radius: 24px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card span {
        font-size: 14px;
    }

    .card-clientes {
        left: 0;
        top: 35px;
    }

    .card-google {
        right: 0;
        top: 110px;
    }

    .card-vendas {
        right: 0;
        bottom: 0;
    }

    .section {
        padding: 60px 0;
    }

    .card,
    .step,
    .cta-box {
        padding: 28px;
    }

    .device-card {
        min-height: 300px;
    }

    .desktop-device {
        width: 245px;
        height: 165px;
        left: 20px;
        top: 50px;
    }

    .mobile-device {
        width: 95px;
        height: 170px;
        right: 25px;
        bottom: 35px;
    }
}
/* WHY SITE SECTION */

.why-site-section {
    padding: 110px 0;
    background: #ffffff;
}

.why-header {
    max-width: 860px;
    margin-bottom: 55px;
}

.why-header span {
    display: inline-block;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.why-header h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 28px;
    max-width: 980px;
}

.why-header h2 strong {
    color: var(--red);
}

.why-header p {
    font-size: 22px;
    line-height: 1.6;
    color: #667085;
    max-width: 900px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 24px;
    padding: 34px;
    min-height: 210px;
    transition: .25s ease;
    box-shadow: 0 10px 30px rgba(16,24,40,.04);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(16,24,40,.08);
}

.why-card.active {
    border-color: rgba(239,0,20,.25);
    box-shadow: 0 20px 45px rgba(239,0,20,.08);
}

.why-icon {
    width: 54px;
    height: 54px;
    background: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    margin-bottom: 28px;
    box-shadow: 0 12px 24px rgba(239,0,20,.22);
}

.why-card h3 {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.why-card p {
    color: #667085;
    font-size: 18px;
    line-height: 1.6;
}

/* RESPONSIVO */

@media (max-width: 1100px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 768px) {

    .why-site-section {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header {
        margin-bottom: 35px;
    }

    .why-header h2 {
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .why-header p {
        font-size: 18px;
    }

    .why-card {
        min-height: auto;
        padding: 28px;
    }

    .why-card h3 {
        font-size: 26px;
    }

    .why-card p {
        font-size: 16px;
    }
}
/* SERVIÇOS MODERNO */

.services-section {
    padding: 110px 0;
    background: #fff;
}

.services-header {
    max-width: 760px;
    margin-bottom: 55px;
}

.services-header span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
}

.services-header h2 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 900;
}

.services-header h2 strong {
    color: var(--red);
}

.services-header p {
    max-width: 760px;
    color: #667085;
    font-size: 22px;
    line-height: 1.6;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-modern-card {
    height: 110px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s ease;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .04);
}

.service-modern-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 0, 20, .2);
    box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.service-modern-card h3 {
    font-size: 22px;
    color: #111827;
    font-weight: 800;
}

.service-arrow {
    color: #98a2b3;
    font-size: 28px;
    font-weight: 300;
    transition: .25s ease;
}

.service-modern-card:hover .service-arrow {
    transform: translateX(6px);
    color: var(--red);
}

/* RESPONSIVO */

@media (max-width: 1100px) {

    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .services-section {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 35px;
    }

    .services-header h2 {
        font-size: 42px;
    }

    .services-header p {
        font-size: 17px;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-modern-card {
        height: auto;
        min-height: 90px;
        padding: 20px;
    }

    .service-modern-card h3 {
        font-size: 18px;
    }

}

/* MARKETING DIGITAL */

.marketing-section {
    padding: 110px 0;
    background: #fff;
}

.marketing-header {
    max-width: 980px;
    margin-bottom: 55px;
}

.marketing-header span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

.marketing-header h2 {
    max-width: 980px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 900;
}

.marketing-header h2 strong {
    display: block;
    color: var(--red);
}

.marketing-header p {
    color: #667085;
    font-size: 20px;
    line-height: 1.6;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.marketing-card {
    min-height: 160px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .04);
    transition: .25s ease;
}

.marketing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 0, 20, .2);
    box-shadow: 0 18px 45px rgba(16, 24, 40, .08);
}

.marketing-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(239, 0, 20, .18);
}

.marketing-card h3 {
    color: #111827;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.marketing-card p {
    color: #667085;
    font-size: 15px;
    line-height: 1.5;
}

/* RESPONSIVO MARKETING */

@media (max-width: 1100px) {
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marketing-section {
        padding: 80px 0;
    }

    .marketing-header {
        margin-bottom: 35px;
    }

    .marketing-header h2 {
        font-size: 42px;
    }

    .marketing-header p {
        font-size: 17px;
    }

    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .marketing-card {
        min-height: auto;
        padding: 24px;
    }
}
/* SEO MODERNO */

.seo-modern-section {
    padding: 120px 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 55%,
        #fff7f7 100%
    );
}

.seo-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.seo-modern-content {
    max-width: 650px;
}

.seo-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

.seo-modern-content h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 900;
}

.seo-modern-content h2 strong {
    color: var(--red);
}

.seo-modern-content p {
    color: #667085;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* CHECKS */

.seo-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.seo-check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    font-weight: 700;
    color: #111827;
}

.seo-check-list li span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
}

/* VISUAL */

.seo-modern-visual {
    position: relative;
}

.seo-browser {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.seo-search-bar {
    height: 48px;
    border-radius: 999px;
    border: 1px solid #dfe3ea;
    background: #f9fafb;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #98a2b3;
    font-weight: 700;
    margin-bottom: 24px;
}

/* RESULTADOS */

.seo-result {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
}

.seo-result.active {
    background: #fff8f8;
    border-color: rgba(239, 0, 20, .35);
}

.seo-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.seo-rank {
    background: var(--red);
    color: #fff;
    height: 24px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 900;
}

.seo-title-line {
    width: 120px;
    height: 10px;
    border-radius: 999px;
    background: var(--red);
}

.seo-title-line.dark {
    background: #4b5563;
}

.seo-line {
    height: 7px;
    border-radius: 999px;
    background: #d1d5db;
    margin-bottom: 10px;
}

.seo-line.big {
    width: 100%;
}

.seo-line.medium {
    width: 65%;
}

/* STATS */

.seo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.seo-stat-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .04);
}

.seo-stat-icon {
    color: var(--red);
    font-size: 20px;
    margin-bottom: 10px;
}

.seo-stat-box strong {
    display: block;
    color: var(--red);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 900;
}

.seo-stat-box span {
    color: #98a2b3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* RESPONSIVO */

@media (max-width: 1100px) {

    .seo-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media (max-width: 768px) {

    .seo-modern-section {
        padding: 80px 0;
    }

    .seo-modern-content h2 {
        font-size: 42px;
    }

    .seo-modern-content p {
        font-size: 17px;
    }

    .seo-check-list li {
        font-size: 16px;
    }

    .seo-browser {
        padding: 20px;
    }

    .seo-stats {
        grid-template-columns: 1fr;
    }

    .seo-stat-box strong {
        font-size: 28px;
    }

}
/* RESPONSIVO MODERNO */

.responsive-modern-section {
    padding: 120px 0;
    background: #fff;
}

.responsive-header {
    max-width: 950px;
    margin-bottom: 55px;
}

.responsive-header span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

.responsive-header h2 {
    max-width: 900px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 26px;
    color: #0f172a;
    font-weight: 900;
}

.responsive-header h2 strong {
    display: block;
    color: var(--red);
}

.responsive-header p {
    max-width: 900px;
    color: #667085;
    font-size: 21px;
    line-height: 1.7;
}

/* GRID */

.responsive-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */

.responsive-card {
    min-height: 210px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .04);
}

.responsive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 0, 20, .22);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

/* ÍCONE */

.responsive-icon {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 42px;
    margin-bottom: 26px;
    box-shadow: 0 16px 35px rgba(239, 0, 20, .2);
}

/* TEXTO */

.responsive-card h3 {
    color: #111827;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

/* RESPONSIVO */

/* RESPONSIVO 2 COLUNAS MOBILE */

@media (max-width: 768px) {

    .responsive-modern-section {
        padding: 80px 0;
    }

    .responsive-header {
        margin-bottom: 35px;
    }

    .responsive-header h2 {
        font-size: 42px;
    }

    .responsive-header p {
        font-size: 17px;
    }

    .responsive-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .responsive-card {
        min-height: 150px;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .responsive-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .responsive-card h3 {
        font-size: 18px;
        line-height: 1.2;
    }

}

@media (max-width: 480px) {

    .responsive-cards {
        gap: 12px;
    }

    .responsive-card {
        min-height: 135px;
        padding: 18px 12px;
    }

    .responsive-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 14px;
    }

    .responsive-card h3 {
        font-size: 16px;
    }

}
/* MÁQUINA DE VENDAS */

.sales-machine-section {
    padding: 120px 0;
    background: #fff;
}

.sales-machine-header {
    max-width: 950px;
    margin-bottom: 55px;
}

.sales-machine-header span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

.sales-machine-header h2 {
    max-width: 850px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 900;
}

.sales-machine-header h2 strong {
    display: block;
    color: var(--red);
}

.sales-machine-header p {
    max-width: 850px;
    color: #667085;
    font-size: 20px;
    line-height: 1.7;
}

/* CARDS */

.sales-machine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 42px;
}

.sales-card {
    min-height: 190px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .04);
    transition: .25s ease;
}

.sales-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 0, 20, .22);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.sales-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(239, 0, 20, .18);
}

.sales-card h3 {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.sales-card p {
    color: #667085;
    font-size: 16px;
    line-height: 1.55;
}

/* TAGS */

.sales-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sales-tag {
    min-height: 70px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .035);
}

.sales-tag span {
    color: var(--red);
    font-size: 24px;
    font-weight: 900;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
    .sales-machine-grid,
    .sales-tags {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sales-machine-section {
        padding: 80px 0;
    }

    .sales-machine-header {
        margin-bottom: 35px;
    }

    .sales-machine-header h2 {
        font-size: 42px;
    }

    .sales-machine-header p {
        font-size: 17px;
    }

    .sales-machine-grid,
    .sales-tags {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sales-card {
        min-height: auto;
        padding: 26px;
    }
}
/* HERO RESPONSIVA PREMIUM */

@media (max-width: 1200px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 70px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .browser-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .card-clientes {
        left: 20px;
    }

    .card-google {
        right: 20px;
    }

    .card-vendas {
        right: 20px;
    }

}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .hero-grid {
        gap: 45px;
        padding: 40px 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-badge {
        font-size: 11px;
        padding: 10px 14px;
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: 54px;
        line-height: .95;
        letter-spacing: -2px;
        margin-bottom: 18px;
    }

    .hero h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 56px;
        font-size: 15px;
    }

    .hero-tags {
        gap: 10px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* VISUAL */

    .hero-visual {
        min-height: 320px;
    }

    .browser-card {
        height: 260px;
        padding: 42px 14px 14px;
        border-radius: 18px;
    }

    .browser-inner {
        padding: 16px;
    }

    .line-red {
        width: 90px;
        height: 6px;
        margin-bottom: 12px;
    }

    .line-dark {
        height: 14px;
        margin-bottom: 10px;
    }

    .line-gray {
        height: 8px;
        margin-bottom: 18px;
    }

    .cards-row {
        gap: 8px;
        margin-bottom: 18px;
    }

    .mini-card {
        height: 42px;
        border-radius: 10px;
    }

    .content-row {
        gap: 12px;
    }

    .phone-preview {
        width: 74px;
        height: 135px;
        border-radius: 22px;
        padding: 14px 10px;
    }

    .phone-preview .phone-btn {
        height: 32px;
        border-radius: 10px;
    }

    .browser-bottom {
        padding-top: 50px;
    }

    .browser-bottom div:first-child {
        width: 100px;
        height: 24px;
    }

    .browser-bottom div:last-child {
        width: 70px;
        height: 24px;
    }

    /* FLOATING CARDS */

    .floating-card {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card span {
        font-size: 13px;
    }

    .card-clientes {
        top: 25px;
        left: 0;
    }

    .card-google {
        top: 105px;
        right: 0;
    }

    .card-vendas {
        right: 0;
        bottom: -10px;
    }

}

@media (max-width: 520px) {

    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-tags {
        flex-wrap: wrap;
    }

    .hero-tags span {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 260px;
    }

    .browser-card {
        height: 220px;
    }

    .floating-card {
        transform: scale(.92);
    }

}
/* CORREÇÃO HERO ESTOURANDO NO MOBILE */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.hero,
.hero-grid,
.hero-content,
.hero-visual {
    max-width: 100%;
}

@media (max-width: 768px) {

    .hero {
        overflow: hidden;
    }

    .hero-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero h1,
    .hero h2,
    .hero p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .browser-card {
        width: 100%;
        max-width: 100%;
        right: auto;
        left: auto;
        overflow: hidden;
    }

    .browser-inner {
        overflow: hidden;
    }

    .hero-visual {
        overflow: hidden;
        padding: 0;
    }

    .floating-card {
        max-width: 120px;
        white-space: normal;
    }

    .card-clientes {
        left: 4px;
    }

    .card-google {
        right: 4px;
    }

    .card-vendas {
        right: 4px;
        bottom: 0;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
    }

    .browser-card {
        transform: scale(.96);
        transform-origin: center;
    }

    .hero-visual {
        min-height: 245px;
    }
}
/* HEADER PÚBLICA */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 82px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229,231,235,.8);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LEFT */

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LOGO */

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    transition: .25s ease;
}

.header-logo img:hover {
    transform: scale(1.03);
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    color: #475467;
    font-size: 15px;
    font-weight: 800;
    transition: .25s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--red);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
    transition: .25s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* RIGHT */

.header-right {
    display: flex;
    align-items: center;
}

/* WHATSAPP */

.header-whatsapp-btn {
    height: 52px;
    padding: 0 24px;
    border-radius: 15px;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(239,0,20,.2);
    transition: .25s ease;
}

.header-whatsapp-btn:hover {
    transform: translateY(-3px);
}

.header-whatsapp-btn i {
    font-size: 18px;
}

/* MOBILE BUTTON */

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: none;
    background: var(--red);
    color: #fff;
    font-size: 24px;
    display: none;
    place-items: center;
    cursor: pointer;
}

/* RESPONSIVO */

@media (max-width: 980px) {

    .mobile-menu-btn {
        display: grid;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 280px;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
        gap: 18px;
        transition: .3s ease;
        border-right: 1px solid #e5e7eb;
        z-index: 999;
    }

    body.menu-open .nav-menu {
        left: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-whatsapp-btn {
        padding: 0 18px;
    }

}

@media (max-width: 768px) {

    .site-header {
        height: 74px;
    }

    .nav-menu {
        top: 74px;
    }

    .header-logo img {
        max-height: 42px;
    }

    .header-whatsapp-btn {
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 14px;
        justify-content: center;
        font-size: 0;
    }

    .header-whatsapp-btn i {
        font-size: 22px;
        margin: 0;
    }

}

@media (max-width: 500px) {

    .header-inner {
        gap: 14px;
    }

    .header-logo img {
        max-height: 38px;
    }

}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(239,0,20,.08), transparent 35%),
        #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);

    background-size: 40px 40px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* CONTENT */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(239,0,20,.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(56px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -4px;
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero h2 {
    color: #111827;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    color: #667085;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 34px;
}

/* ACTIONS */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 900;
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 40px rgba(239,0,20,.22);
}

.btn-green {
    background: #25D366;
    color: #fff;
    box-shadow: 0 18px 40px rgba(37,211,102,.2);
}

/* TAGS */

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags span {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(15,23,42,.04);
}

/* VISUAL */

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */

.hero-image-card {
    width: 100%;
    max-width: 680px;
    height: 470px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 35px 90px rgba(15,23,42,.15);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.hero-image-card:hover img {
    transform: scale(1.04);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(239,0,20,.24),
            transparent 45%
        );
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff5f5, #fff);
    color: #667085;
    font-size: 18px;
    font-weight: 900;
}

/* FLOATING */

.floating-card {
    position: absolute;
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 24px 50px rgba(15,23,42,.12);
}

.floating-card strong {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card span {
    color: #111827;
    font-size: 28px;
    font-weight: 900;
}

.card-clientes {
    top: 40px;
    left: -20px;
}

.card-google {
    top: 120px;
    right: -20px;
}

.card-vendas {
    right: 10px;
    bottom: 20px;
}

/* RESPONSIVO */

@media (max-width: 1200px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    .hero {
        padding: 40px 0 70px;
        overflow: hidden;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-image-card {
        height: 320px;
        border-radius: 24px;
    }

    .floating-card {
        min-width: 120px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card span {
        font-size: 20px;
    }

    .card-clientes {
        left: 4px;
        top: 18px;
    }

    .card-google {
        right: 4px;
        top: 90px;
    }

    .card-vendas {
        right: 4px;
        bottom: 12px;
    }

}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-image-card {
        height: 260px;
    }

}

.section-title h2 strong,
.services-header h2 strong {
    color: var(--red);
    display: inline;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    z-index: 9999;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
    transition: .25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-float i {
    font-size: 25px;
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }
}

/* HERO MOBILE PREMIUM */

@media (max-width: 768px) {

    .hero {
        padding: 28px 0 55px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 20px;
        font-size: 10px;
        letter-spacing: 1.4px;
        padding: 0 14px;
        min-height: 36px;
        max-width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 41px;
        line-height: .98;
        letter-spacing: -1.8px;
        margin-bottom: 16px;
    }

    .hero h2 {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 54px;
        border-radius: 15px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-actions .btn-green {
        background: #25D366;
    }

    .hero-tags {
        justify-content: center;
        gap: 8px;
    }

    .hero-tags span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .hero-visual {
        min-height: 315px;
        width: 100%;
    }

    .hero-image-card {
        height: 280px;
        width: 100%;
        border-radius: 24px;
    }

    .floating-card {
        min-width: auto;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .floating-card strong {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .floating-card span {
        font-size: 17px;
    }

    .card-clientes {
        top: 12px;
        left: 8px;
    }

    .card-google {
        top: 88px;
        right: 8px;
    }

    .card-vendas {
        right: 8px;
        bottom: 8px;
    }
}

@media (max-width: 430px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero-image-card {
        height: 240px;
    }

    .hero-visual {
        min-height: 270px;
    }

    .hero-actions .btn {
        min-height: 52px;
        font-size: 13px;
    }
}