:root {
    --nl-yellow: #f3df58;
    --nl-yellow-strong: #f8c72d;
    --nl-dark: #111111;
    --nl-graphite: #22231f;
    --nl-soft: #fff9d6;
    --nl-muted: #6f7169;
    --nl-white: #ffffff;
    --nl-border: rgba(17, 17, 17, 0.10);
    --nl-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--nl-dark);
    background: #fffdf0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 96px 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(243, 223, 88, 0.28);
    color: #574b00;
    font-weight: 800;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.section-title {
    max-width: 740px;
    margin: 0 auto;
}

.section-title h2,
.about-section h2,
.products-section h2,
.faq-section h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.02;
    margin-bottom: 16px;
}

.section-title p,
.about-section p,
.faq-section p {
    color: var(--nl-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* NAVBAR */
.newsloc-navbar {
    background: rgba(255, 253, 240, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    padding: 14px 0;
}

.newsloc-brand,
.footer-brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--nl-dark);
}

.newsloc-brand:hover {
    color: var(--nl-dark);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--nl-dark);
    color: var(--nl-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: -0.08em;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.brand-text,
.footer-brand-wrap div {
    display: grid;
    line-height: 1;
}

.brand-text strong,
.footer-brand-wrap strong {
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.brand-text small,
.footer-brand-wrap small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--nl-muted);
    margin-top: 4px;
}

.newsloc-navbar .nav-link {
    color: #34342e;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.newsloc-navbar .nav-link:hover {
    color: #000;
}

.nav-cta,
.btn-primary-newsloc,
.btn-dark-newsloc {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-cta,
.btn-primary-newsloc {
    background: var(--nl-yellow);
    color: var(--nl-dark);
    box-shadow: 0 15px 30px rgba(248, 199, 45, .26);
}

.nav-cta:hover,
.btn-primary-newsloc:hover {
    background: var(--nl-yellow-strong);
    color: var(--nl-dark);
    transform: translateY(-1px);
}

.btn-outline-newsloc {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 22px;
}

.btn-outline-newsloc:hover {
    background: #fff;
    color: var(--nl-dark);
}

.btn-dark-newsloc {
    background: var(--nl-dark);
    color: #fff;
}

.btn-dark-newsloc:hover {
    background: #000;
    color: var(--nl-yellow);
}

/* HERO */
.hero-newsloc {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 10% 20%, rgba(243, 223, 88, .35), transparent 30%),
        linear-gradient(135deg, #171811 0%, #25251d 52%, #0d0d0b 100%);
    color: #fff;
    overflow: hidden;
}

.hero-newsloc::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: .7;
}

.hero-shape-one {
    width: 380px;
    height: 380px;
    right: -120px;
    top: 90px;
    background: var(--nl-yellow);
}

.hero-shape-two {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: 80px;
    background: rgba(243, 223, 88, 0.35);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.18);
    color: var(--nl-yellow);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
    background: rgba(255,255,255,.06);
}

.hero-newsloc h1 {
    font-size: clamp(2.65rem, 6vw, 5.35rem);
    line-height: .95;
    letter-spacing: -0.075em;
    font-weight: 900;
    max-width: 720px;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 620px;
    color: rgba(255,255,255,.78);
    font-size: 1.11rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.hero-actions,
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-points {
    margin-top: 26px;
    gap: 18px;
    color: rgba(255,255,255,.86);
    font-weight: 700;
}

.hero-points i {
    color: var(--nl-yellow);
    margin-right: 6px;
}

.hero-visual {
    position: relative;
    min-height: 580px;
}

.hero-logo-card {
    position: absolute;
    top: 0;
    right: 40px;
    width: 330px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--nl-shadow);
    transform: rotate(2deg);
}

.tool-card {
    position: absolute;
    background: #fff;
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--nl-shadow);
}

.tool-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
}

.tool-card-main {
    left: 10px;
    top: 155px;
    width: 330px;
    height: 390px;
    transform: rotate(-6deg);
}

.tool-card-small {
    width: 190px;
    height: 170px;
}

.tool-card-small.one {
    right: 0;
    top: 275px;
    transform: rotate(8deg);
}

.tool-card-small.two {
    right: 150px;
    bottom: 0;
    transform: rotate(-1deg);
    background: var(--nl-yellow);
}

.availability-card {
    position: absolute;
    left: 210px;
    bottom: 44px;
    background: #fff;
    color: var(--nl-dark);
    padding: 18px 22px;
    border-radius: 24px;
    box-shadow: var(--nl-shadow);
    max-width: 240px;
}

.availability-card strong,
.availability-card span {
    display: block;
}

.availability-card strong {
    font-weight: 900;
}

.availability-card span {
    color: var(--nl-muted);
    font-size: .9rem;
    margin-top: 2px;
}

/* ABOUT */
.about-section {
    background: #fffdf0;
}

.about-image-wrap {
    position: relative;
    background: linear-gradient(145deg, var(--nl-yellow), #fff7ad);
    border-radius: 38px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--nl-shadow);
}

.about-main-img {
    width: 74%;
    object-fit: contain;
    transform: translateY(25px);
}

.experience-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: #fff;
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.experience-badge strong,
.experience-badge span {
    display: block;
}

.experience-badge strong {
    font-weight: 900;
}

.experience-badge span {
    color: var(--nl-muted);
    font-size: .92rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.about-grid div,
.service-card,
.product-card,
.process-step,
.footer-card {
    border: 1px solid var(--nl-border);
    background: rgba(255,255,255,.76);
    border-radius: 28px;
    padding: 24px;
    transition: .25s ease;
}

.about-grid div:hover,
.service-card:hover,
.product-card:hover,
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,0,0,.10);
}

.about-grid i,
.service-card i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--nl-dark);
    color: var(--nl-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.about-grid strong,
.about-grid span {
    display: block;
}

.about-grid strong {
    font-weight: 900;
    margin-bottom: 5px;
}

.about-grid span {
    color: var(--nl-muted);
    font-size: .95rem;
}

/* SERVICES */
.services-section {
    background:
        radial-gradient(circle at 88% 20%, rgba(243, 223, 88, .3), transparent 28%),
        #f7f3d7;
}

.service-card {
    height: 100%;
    background: #fffdf0;
}

.service-card h3,
.product-card h3,
.process-step h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.service-card p,
.product-card p,
.process-step p {
    color: var(--nl-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* PRODUCTS */
.products-section {
    background: #fffdf0;
}

.product-card {
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.product-card.highlighted {
    border-color: rgba(243, 223, 88, .8);
    box-shadow: 0 26px 60px rgba(248, 199, 45, .17);
}

.product-img {
    height: 300px;
    background: #f7f7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-img img {
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-yellow {
    background: linear-gradient(145deg, var(--nl-yellow), #fff8b9);
}

.product-body {
    padding: 26px;
}

.product-body span {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--nl-soft);
    color: #6d5b00;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.product-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nl-dark);
    font-weight: 900;
    margin-top: 18px;
}

.product-body a:hover {
    color: #876f00;
}

/* PROCESS */
.process-section {
    background: var(--nl-dark);
    color: #fff;
}

.process-section .section-eyebrow {
    background: rgba(243, 223, 88, .16);
    color: var(--nl-yellow);
}

.process-section .section-title p,
.process-step p {
    color: rgba(255,255,255,.68);
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
}

.process-step span {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--nl-yellow);
    color: var(--nl-dark);
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-strip {
    margin-top: 42px;
    background: linear-gradient(135deg, var(--nl-yellow), #fff18d);
    color: var(--nl-dark);
    border-radius: 34px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-strip span {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
    margin-bottom: 6px;
}

.cta-strip h3 {
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.cta-strip p {
    margin: 0;
    color: #554d18;
}

.cta-strip .btn-primary-newsloc {
    background: var(--nl-dark);
    color: #fff;
    box-shadow: none;
    min-width: 160px;
}

/* FAQ */
.faq-section {
    background: #fffdf0;
}

.newsloc-accordion .accordion-item {
    border: 1px solid var(--nl-border);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.newsloc-accordion .accordion-button {
    font-weight: 900;
    padding: 22px 24px;
    box-shadow: none;
    background: #fff;
}

.newsloc-accordion .accordion-button:not(.collapsed) {
    background: var(--nl-yellow);
    color: var(--nl-dark);
}

.newsloc-accordion .accordion-body {
    color: var(--nl-muted);
    line-height: 1.75;
    padding: 22px 24px;
}

/* FOOTER */
.footer-newsloc {
    background: #090908;
    color: #fff;
    padding: 72px 0 28px;
}

.footer-brand-wrap .brand-mark {
    background: var(--nl-yellow);
    color: var(--nl-dark);
}

.footer-brand-wrap small,
.footer-text,
.footer-bottom,
.footer-card p {
    color: rgba(255,255,255,.62);
}

.footer-text {
    max-width: 460px;
    line-height: 1.75;
    margin-top: 18px;
}

.footer-newsloc h5 {
    font-weight: 900;
    margin-bottom: 18px;
}

.footer-newsloc a {
    display: block;
    color: rgba(255,255,255,.70);
    margin-bottom: 10px;
    transition: .2s ease;
}

.footer-newsloc a:hover {
    color: var(--nl-yellow);
}

.footer-card {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
}

.footer-card a {
    display: inline-flex;
    background: var(--nl-yellow);
    color: var(--nl-dark);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 900;
    margin-top: 8px;
}

.footer-card a:hover {
    color: #000;
    background: var(--nl-yellow-strong);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .92rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .36);
    z-index: 9999;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .hero-logo-card {
        width: 280px;
    }

    .tool-card-main {
        width: 300px;
        height: 360px;
    }

    .process-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .newsloc-navbar {
        background: #fffdf0;
    }

    .nav-cta {
        margin-top: 12px;
        width: 100%;
    }

    .hero-newsloc {
        padding-top: 125px;
    }

    .hero-visual {
        min-height: 560px;
        max-width: 610px;
        margin: 0 auto;
    }

    .cta-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 72px 0;
    }

    .hero-newsloc h1 {
        font-size: 3.1rem;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-logo-card {
        width: 230px;
        right: 10px;
    }

    .tool-card-main {
        left: 0;
        top: 145px;
        width: 245px;
        height: 305px;
    }

    .tool-card-small {
        width: 150px;
        height: 140px;
    }

    .tool-card-small.one {
        top: 270px;
    }

    .tool-card-small.two {
        right: 100px;
    }

    .availability-card {
        left: 90px;
        bottom: 15px;
    }

    .about-grid,
    .process-line {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-text small {
        letter-spacing: 0.16em;
    }

    .hero-newsloc h1 {
        font-size: 2.65rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-logo-card {
        width: 200px;
    }

    .tool-card-main {
        width: 205px;
        height: 260px;
    }

    .tool-card-small.one {
        width: 125px;
        height: 120px;
        right: 0;
    }

    .tool-card-small.two,
    .availability-card {
        display: none;
    }

    .about-image-wrap {
        min-height: 390px;
    }
}

/* UPGRADES V04 - bordas elegantes, hero central, mascot, flip cards, mapas e termos */
.page-container {
    background:
        radial-gradient(circle at 5% 6%, rgba(243, 223, 88, .18), transparent 28%),
        radial-gradient(circle at 95% 18%, rgba(255, 255, 255, .9), transparent 26%),
        #fffdf0;
}

.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s ease, transform .72s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

.newsloc-navbar.is-scrolled {
    box-shadow: 0 16px 45px rgba(0,0,0,.08);
}

.hero-centered {
    min-height: auto;
    padding: 150px 0 95px;
    text-align: center;
    background:
        radial-gradient(circle at 15% 22%, rgba(243, 223, 88, .33), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 244, 132, .18), transparent 28%),
        linear-gradient(135deg, #181910 0%, #282a1d 54%, #0c0d0b 100%);
}

.hero-centered::after {
    content: "";
    position: absolute;
    inset: auto 7% 6% 7%;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(243,223,88,.16), transparent 70%);
    filter: blur(10px);
}

.hero-center-content {
    max-width: 980px;
    margin: 0 auto 42px;
}

.hero-center-content h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.hero-center-content .hero-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-featured-embed {
    position: relative;
    max-width: 1220px;
    margin: 48px auto 0;
    z-index: 3;
}

.hero-featured-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(243,223,88,.12);
    border: 1px solid rgba(243,223,88,.28);
    color: var(--nl-yellow);
    font-weight: 800;
    margin: 0 auto 18px;
}

.hero-stage {
    position: relative;
    min-height: 530px;
    max-width: 970px;
    margin: 0 auto;
}

.hero-logo-centered {
    top: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(2deg);
    border-radius: 34px 34px 12px 34px;
    width: 300px;
    z-index: 3;
}

.hero-main-tool {
    left: 28%;
    top: 155px;
    width: 320px;
    height: 365px;
    transform: rotate(-5deg);
    z-index: 4;
    border-radius: 42px 42px 18px 42px;
}

.hero-mini-one {
    right: 22%;
    top: 175px;
    z-index: 5;
    border-radius: 32px 32px 32px 10px;
}

.hero-mini-two {
    right: 36%;
    bottom: 0;
    z-index: 2;
    border-radius: 34px 12px 34px 34px;
}

.hero-availability {
    left: auto;
    right: 18%;
    bottom: 92px;
    z-index: 6;
    text-align: left;
    border-radius: 24px 24px 8px 24px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(243, 223, 88, .22);
    border-radius: 999px;
    pointer-events: none;
}

.orbit-one {
    width: 680px;
    height: 220px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%) rotate(-8deg);
}

.orbit-two {
    width: 920px;
    height: 300px;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%) rotate(8deg);
}

.newsloc-mascot {
    position: absolute;
    left: 13%;
    bottom: 38px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: mascotFloat 4.5s ease-in-out infinite;
}

.mascot-head {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50% 50% 38% 38%;
    background: #fff;
    border: 5px solid var(--nl-yellow);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.helmet {
    position: absolute;
    left: 8px;
    right: 8px;
    top: -12px;
    height: 30px;
    background: var(--nl-yellow);
    border-radius: 30px 30px 8px 8px;
    border: 3px solid #171811;
}

.eye {
    position: absolute;
    top: 33px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #171811;
}

.eye.left { left: 23px; }
.eye.right { right: 23px; }

.smile {
    position: absolute;
    left: 27px;
    top: 49px;
    width: 22px;
    height: 10px;
    border-bottom: 3px solid #171811;
    border-radius: 0 0 22px 22px;
}

.mascot-body {
    width: 54px;
    height: 54px;
    margin-left: -24px;
    margin-top: 52px;
    border-radius: 18px;
    background: #171811;
    color: var(--nl-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    transform: rotate(-10deg);
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.mascot-bubble {
    max-width: 190px;
    background: #fff;
    color: #191a12;
    border-radius: 22px 22px 22px 6px;
    padding: 14px 16px;
    font-weight: 900;
    font-size: .88rem;
    text-align: left;
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.gradient-soft-section {
    background:
        radial-gradient(circle at 4% 12%, rgba(243, 223, 88, .24), transparent 24%),
        linear-gradient(180deg, #fffdf0 0%, #f7f3d7 100%);
}

.section-lead {
    color: var(--nl-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0;
}

.product-flip-grid {
    perspective: 1400px;
}

.flip-card {
    min-height: 520px;
    height: 100%;
    perspective: 1400px;
    cursor: pointer;
    outline: none;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    transition: transform .72s cubic-bezier(.2,.75,.25,1);
    transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner,
.flip-card:focus-visible .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    overflow: hidden;
    border: 1px solid var(--nl-border);
    border-radius: 42px 42px 16px 42px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 24px 70px rgba(0,0,0,.11);
}

.flip-card.highlighted .flip-card-face {
    border-color: rgba(243, 223, 88, .78);
    box-shadow: 0 28px 80px rgba(248, 199, 45, .2);
}

.flip-card-back {
    transform: rotateY(180deg);
    background:
        radial-gradient(circle at 92% 8%, rgba(243,223,88,.45), transparent 32%),
        linear-gradient(145deg, #171811 0%, #2a2d1f 100%);
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-back .back-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--nl-yellow);
    color: var(--nl-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.flip-card-back h3 {
    font-size: 1.58rem;
    font-weight: 900;
    letter-spacing: -.045em;
    margin-bottom: 14px;
}

.flip-card-back p,
.flip-card-back li {
    color: rgba(255,255,255,.74);
    line-height: 1.7;
}

.flip-card-back ul {
    margin: 16px 0 22px;
    padding-left: 20px;
}

.flip-card-back a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--nl-yellow);
    color: var(--nl-dark);
    padding: 12px 18px;
    font-weight: 900;
    align-self: flex-start;
}

.flip-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: #6d5b00;
    font-weight: 900;
}

.tool-gallery {
    margin-top: 34px;
    border-radius: 42px 42px 16px 42px;
    background:
        linear-gradient(135deg, rgba(17,17,17,.96), rgba(42,45,31,.95)),
        #171811;
    padding: 30px;
    color: #fff;
    display: grid;
    grid-template-columns: .9fr 1.4fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.tool-gallery::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -130px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(243,223,88,.25);
    filter: blur(8px);
}

.gallery-copy h3 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.05em;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 2;
}

.gallery-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px 28px 10px 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    transition: transform .3s ease;
}

.gallery-strip img:nth-child(even) {
    transform: translateY(18px);
}

.gallery-strip img:hover {
    transform: translateY(-6px) scale(1.02);
}

.services-section {
    background:
        radial-gradient(circle at 88% 20%, rgba(243, 223, 88, .3), transparent 28%),
        linear-gradient(135deg, #f7f3d7 0%, #fffdf0 55%, #efe9b8 100%);
}

.service-card,
.about-grid div,
.process-step,
.map-info-card,
.newsloc-accordion .accordion-item {
    border-radius: 34px 34px 12px 34px;
}

.about-image-wrap {
    border-radius: 54px 54px 18px 54px;
}

.experience-badge,
.cta-strip {
    border-radius: 30px 30px 10px 30px;
}

.map-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(243,223,88,.24), transparent 25%),
        linear-gradient(180deg, #fffdf0 0%, #171811 100%);
}

.map-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.map-section p {
    color: var(--nl-muted);
    line-height: 1.78;
}

.map-info-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--nl-border);
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.map-info-card i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--nl-dark);
    color: var(--nl-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.map-info-card strong,
.map-info-card span {
    display: block;
}

.map-info-card strong {
    font-weight: 900;
}

.map-info-card span {
    color: var(--nl-muted);
    font-size: .95rem;
}

.map-card {
    background: #fff;
    border: 10px solid #fff;
    border-radius: 58px 58px 18px 58px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.2);
}

.map-card iframe {
    display: block;
    border-radius: 48px 48px 12px 48px;
}

.terms-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 9998;
    width: min(430px, calc(100vw - 44px));
    display: flex;
    gap: 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--nl-border);
    border-radius: 28px 28px 10px 28px;
    box-shadow: 0 26px 80px rgba(0,0,0,.16);
    padding: 18px;
    backdrop-filter: blur(14px);
}

.terms-float.is-hidden {
    display: none;
}

.terms-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #f3f1e5;
    color: var(--nl-dark);
}

.terms-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--nl-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--nl-dark);
}

.terms-float strong {
    display: block;
    font-weight: 900;
    margin-right: 32px;
}

.terms-float p {
    margin: 5px 0 12px;
    color: var(--nl-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.terms-accept {
    border: 0;
    border-radius: 999px;
    background: var(--nl-dark);
    color: #fff;
    padding: 9px 14px;
    font-weight: 900;
    font-size: .9rem;
}

.whatsapp-float {
    bottom: 96px;
}

@media (max-width: 991px) {
    .hero-centered {
        padding-top: 128px;
    }

    .hero-stage {
        min-height: 520px;
    }

    .hero-main-tool {
        left: 11%;
    }

    .hero-mini-one {
        right: 8%;
    }

    .hero-mini-two {
        right: 29%;
    }

    .hero-availability {
        right: 5%;
    }

    .newsloc-mascot {
        left: 4%;
    }

    .tool-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-stage {
        min-height: 500px;
    }

    .hero-logo-centered {
        width: 230px;
    }

    .hero-main-tool {
        left: 0;
        top: 145px;
        width: 245px;
        height: 305px;
    }

    .hero-mini-one {
        right: 0;
        top: 245px;
    }

    .hero-availability {
        right: 0;
        bottom: 35px;
    }

    .newsloc-mascot {
        display: none;
    }

    .flip-card,
    .flip-card-inner {
        min-height: 560px;
    }

    .gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-strip img:nth-child(even) {
        transform: none;
    }

    .map-card iframe {
        height: 340px;
    }

    .terms-float {
        left: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .whatsapp-float {
        right: 18px;
        bottom: 118px;
    }
}

@media (max-width: 480px) {
    .hero-stage {
        min-height: 420px;
    }

    .hero-logo-centered {
        width: 190px;
    }

    .hero-main-tool {
        width: 205px;
        height: 260px;
    }

    .hero-mini-one {
        width: 128px;
        height: 118px;
        top: 235px;
    }

    .hero-availability {
        display: none;
    }

    .flip-card,
    .flip-card-inner {
        min-height: 590px;
    }

    .tool-gallery {
        padding: 22px;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Ajustes V05 - logo real, mascote oficial e creditos EFFMAX */
.brand-logo-img {
    width: 190px;
  
    /* object-fit: coive; */
    border-radius: 18px;
    /* background: #f2e873; */
    /* padding: 6px 10px; */
    /* box-shadow: 0 14px 38px rgba(0,0,0,.14); */
}

.footer-logo-img {
    width: 178px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    background: #f2e873;
    padding: 8px 12px;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.mascot-image-card {
    left: 2%;
    bottom: -8px;
    align-items: flex-end;
}

.mascot-image-card img {
    width: clamp(150px, 18vw, 245px);
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 35px rgba(0,0,0,.28));
}

.mascot-image-card .mascot-bubble {
    margin-left: -28px;
    margin-bottom: 48px;
}

.about-image-wrap {
    background: linear-gradient(135deg, #fffdf0 0%, #f5e24b 54%, #161711 100%);
}

.about-main-img {
    background: #fffef5;
    padding: 20px;
    border-radius: 34px;
}

.footer-bottom a {
    display: inline;
    color: var(--nl-yellow);
    margin-bottom: 0;
}

.footer-dev-note {
    margin-top: 12px;
    color: rgba(255,255,255,.42);
    font-size: .84rem;
}

@media (max-width: 991px) {
    .brand-logo-img {
        width: 136px;
        height: 50px;
    }
    .mascot-image-card {
        left: 0;
        bottom: -12px;
    }
    .mascot-image-card img {
        width: 150px;
    }
    .mascot-image-card .mascot-bubble {
        margin-left: -18px;
        margin-bottom: 26px;
    }
}

@media (max-width: 767px) {
    .mascot-image-card {
        display: none;
    }
}

/* Paginas legais */
.legal-page {
    background:
        radial-gradient(circle at top right, rgba(243, 223, 88, .22), transparent 34%),
        linear-gradient(180deg, #fbfaf2 0%, #ffffff 42%, #f8f6e9 100%);
    min-height: 100vh;
    color: var(--nl-dark);
}

.legal-hero {
    padding-top: 145px;
    padding-bottom: 42px;
}

.legal-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px);
    border-radius: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #fff7b8 52%, #171811 100%);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .14);
    position: relative;
    overflow: hidden;
}

.legal-shell::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}

.legal-shell h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 950;
    letter-spacing: -.07em;
    line-height: .92;
    color: #080905;
}

.legal-shell p {
    max-width: 720px;
    color: rgba(0,0,0,.68);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.legal-shell small {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: rgba(0,0,0,.65);
    font-weight: 800;
}

.legal-content-section {
    padding: 0 0 90px;
}

.legal-content {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 36px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}

.legal-content h2 {
    font-size: clamp(1.25rem, 2.3vw, 1.75rem);
    font-weight: 920;
    letter-spacing: -.04em;
    margin: 32px 0 12px;
    color: #10110b;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: rgba(0,0,0,.68);
    line-height: 1.85;
    margin: 0;
}

.legal-content a {
    color: #111;
    font-weight: 850;
    text-decoration: none;
    border-bottom: 2px solid var(--nl-yellow);
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.btn-legal-primary,
.btn-legal-outline {
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 900;
    border: 0 !important;
    text-decoration: none !important;
}

.btn-legal-primary {
    background: var(--nl-yellow);
    color: #111 !important;
    box-shadow: 0 12px 34px rgba(243,223,88,.32);
}

.btn-legal-outline {
    background: #11130d;
    color: #fff !important;
}

.terms-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 10px 0 0;
    color: #111;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 2px solid var(--nl-yellow);
}

@media (max-width: 767px) {
    .legal-hero {
        padding-top: 118px;
    }
    .legal-shell,
    .legal-content {
        border-radius: 28px;
    }
    .legal-actions {
        flex-direction: column;
    }
    .btn-legal-primary,
    .btn-legal-outline {
        width: 100%;
        text-align: center;
    }
}

/* Ajustes V10 - reforco de aluguel/locacao e carrossel de maquinas */
.newsloc-navbar {
    padding: 16px 0;
}

.brand-logo-img {
    width: 190px;
    /* height: 70px; */
    /* padding: 7px 12px; */
    border-radius: 15px;
}

.hero-center-content h1,
.hero-newsloc h1 {
    text-transform: uppercase;
    max-width: 1060px;
    letter-spacing: -0.08em;
}

.hero-title-kicker {
    display: inline-block;
    color: #cfc580;
    text-shadow: 0 12px 34px rgba(243, 223, 88, .28);
}

.hero-rental-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -6px auto 24px;
}

.hero-rental-highlights strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--nl-yellow);
    color: #111;
    font-size: clamp(.84rem, 1.3vw, 1rem);
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(243, 223, 88, .22);
}

.hero-rental-highlights strong:nth-child(2) {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(243, 223, 88, .55);
}

.featured-machines-section {
    position: relative;
    padding: 76px 0 34px;
    margin-top: -1px;
    background:
        radial-gradient(circle at 12% 18%, rgba(243, 223, 88, .28), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(0, 0, 0, .07), transparent 26%),
        linear-gradient(180deg, #fffdf0 0%, #f6f0c4 100%);
    overflow: hidden;
}

.featured-machines-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.featured-machines-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 28px;
    text-align: center;
}

.featured-machines-head h2 {
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.065em;
    font-weight: 950;
    margin: 0 0 15px;
}

.featured-machines-head p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(17,17,17,.66);
    line-height: 1.75;
    font-size: 1.04rem;
}

.machines-carousel {
    position: relative;
    z-index: 2;
    padding: 0 58px 58px;
}

.machine-slide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.machine-highlight-card {
    min-height: 390px;
    border-radius: 36px 36px 14px 36px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(17,17,17,.08);
    padding: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.11);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.machine-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,.16);
}

.machine-img {
    height: 190px;
    border-radius: 28px 28px 10px 28px;
    background: linear-gradient(145deg, #fffef4 0%, #f3e56a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.machine-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.16));
}

.machine-highlight-card span {
    align-self: flex-start;
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(17,17,17,.08);
    color: #3f3800;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    margin-bottom: 10px;
}

.machine-highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 950;
    letter-spacing: -.04em;
    margin: 0 0 9px;
}

.machine-highlight-card p {
    color: rgba(17,17,17,.66);
    line-height: 1.62;
    margin: 0;
    font-size: .94rem;
}

.machine-cta-card {
    background:
        radial-gradient(circle at 80% 10%, rgba(243,223,88,.5), transparent 35%),
        linear-gradient(145deg, #171811 0%, #2b2b1f 100%);
    /* color: #fff; */
    justify-content: center;
}

.machine-cta-card span,
.machine-cta-card p {
    color: black !important;
}
.machine-cta-card h3{
        color: black !important;

}

.machine-cta-card span {
    background: rgba(255,255,255,.1);
}

.machine-cta-card a {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 18px;
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--nl-yellow);
    color: #111;
    font-weight: 900;
}

.machine-cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: var(--nl-yellow);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 18px;
}

.machine-carousel-control {
    width: 46px;
    height: 46px;
    top: 43%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #111;
    opacity: 1;
    color: var(--nl-yellow);
}

.machine-carousel-control:hover {
    background: var(--nl-yellow);
    color: #111;
}

.machine-carousel-control.carousel-control-prev {
    left: 0;
}

.machine-carousel-control.carousel-control-next {
    right: 0;
}

.machines-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

.machines-indicators [data-bs-target] {
    width: 34px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(17,17,17,.35);
}

.machines-indicators .active {
    background: var(--nl-yellow-strong);
}

.featured-machines-section.featured-in-hero {
    padding: 10px 0 0;
    background: transparent;
}

.featured-machines-section.featured-in-hero::before {
    display: none;
}

.featured-machines-section.featured-in-hero .machines-carousel {
    padding: 0 58px 48px;
}

.featured-machines-section.featured-in-hero .machine-highlight-card {
    min-height: 350px;
    background: rgba(255,255,255,.94);
}

.featured-machines-section.featured-in-hero .machine-highlight-card:hover {
    transform: translateY(-6px);
}

.featured-machines-section.featured-in-hero .machine-cta-card {
    background:
        radial-gradient(circle at 80% 10%, rgba(243,223,88,.42), transparent 35%),
        linear-gradient(145deg, rgba(23,24,17,.96) 0%, rgba(43,43,31,.96) 100%);
}

.featured-machines-section.featured-in-hero .machine-carousel-control {
    top: 42%;
}

@media (max-width: 1199px) {
    .machine-slide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .brand-logo-img {
        width: 158px;
        height: 58px;
    }
}

@media (max-width: 767px) {
    .featured-machines-section {
        padding: 58px 0 22px;
    }
    .machines-carousel {
        padding: 0 0 58px;
    }
    .machine-slide-grid {
        grid-template-columns: 1fr;
    }
    .machine-carousel-control {
        display: none;
    }
    .hero-featured-embed {
        margin-top: 34px;
    }
    .featured-machines-section.featured-in-hero .machines-carousel {
        padding: 0 0 48px;
    }
    .featured-machines-section.featured-in-hero .machine-highlight-card {
        min-height: auto;
    }
    .hero-featured-label {
        font-size: .92rem;
    }
    .hero-newsloc {
        padding-bottom: 72px;
    }
    .hero-rental-highlights {
        margin-top: 0;
    }
}


/* ===== HERO V13 SPLIT LAYOUT ===== */
.hero-newsloc.hero-split-layout {
    min-height: auto;
    padding: 138px 0 86px;
}

.hero-split-layout .hero-layout-row {
    position: relative;
    z-index: 3;
}

.hero-split-layout .hero-copy-box {
    text-align: left;
    max-width: 560px;
}

.hero-split-layout h1 {
    font-size: clamp(2.5rem, 4.8vw, 4.55rem);
    max-width: 600px;
    margin-bottom: 20px;
}

.hero-split-layout .hero-subtitle {
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 1.07rem;
}

.hero-split-layout .hero-actions,
.hero-split-layout .hero-points {
    justify-content: flex-start;
}

.hero-split-layout .hero-points {
    gap: 14px 18px;
    margin-top: 22px;
}

.hero-split-layout .hero-featured-embed {
    max-width: 100%;
    margin: 0;
}

.hero-split-layout .hero-featured-label {
    display: inline-flex;
    margin: 0 0 14px;
}

.hero-split-layout .featured-machines-section.featured-in-hero {
    padding: 0;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machines-carousel {
    padding: 0 46px 38px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
    gap: 14px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card {
    min-height: 345px;
    border-radius: 30px 30px 14px 30px;
    padding: 16px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-img {
    height: 165px;
    border-radius: 24px 24px 10px 24px;
    margin-bottom: 14px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card h3 {
    font-size: 1.06rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card p {
    font-size: .90rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-carousel-control {
    width: 42px;
    height: 42px;
    top: 42%;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-carousel-control.carousel-control-prev {
    left: -4px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-carousel-control.carousel-control-next {
    right: -4px;
}

.hero-split-layout .hero-shape-one {
    width: 180px;
    height: 180px;
    right: -56px;
    top: 32px;
    opacity: .42;
}

.hero-split-layout .hero-shape-two {
    width: 190px;
    height: 190px;
    left: -86px;
    bottom: 42px;
    opacity: .22;
}

@media (max-width: 1199px) {
    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-newsloc.hero-split-layout {
        padding: 124px 0 72px;
    }

    .hero-split-layout .hero-copy-box {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-split-layout .hero-subtitle {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split-layout .hero-actions,
    .hero-split-layout .hero-points {
        justify-content: center;
    }

    .hero-split-layout .hero-featured-label {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .hero-split-layout .hero-shape-one {
        display: none;
    }

    .hero-split-layout .hero-orbit {
        display: none;
    }

    .hero-newsloc.hero-split-layout {
        padding: 112px 0 58px;
    }

    .hero-split-layout h1 {
        font-size: clamp(2.2rem, 10vw, 3.15rem);
        max-width: 100%;
    }

    .hero-split-layout .hero-featured-embed {
        margin-top: 8px;
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machines-carousel {
        padding: 0 0 34px;
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== V14 SIZE TUNING + HERO CARD REFINEMENT ===== */
body {
    font-size: 15px;
}

.section-padding {
    padding: 82px 0;
}

.section-title h2,
.about-section h2,
.products-section h2,
.faq-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    margin-bottom: 12px;
}

.section-title p,
.about-section p,
.faq-section p,
.about-copy p,
.service-card p,
.product-card p,
.process-card p,
.faq-answer,
.footer-small {
    font-size: .95rem;
    line-height: 1.68;
}

.newsloc-navbar {
    padding: 5px 0;
}

.newsloc-navbar .nav-link {
    font-size: .9rem;
}

.nav-cta,
.btn-primary-newsloc,
.btn-dark-newsloc,
.btn-outline-newsloc {
    font-size: .97rem;
    padding: 11px 20px;
}

.section-eyebrow,
.hero-tag {
    font-size: .86rem;
}

.hero-split-layout h1 {
    font-size: clamp(2.05rem, 4.2vw, 3.7rem);
    line-height: .96;
    letter-spacing: -0.07em;
}

.hero-title-kicker {
    display: inline;
}

.hero-split-layout .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 510px;
}

.hero-split-layout .hero-points {
    font-size: .95rem;
    gap: 12px 16px;
}

.hero-split-layout .hero-featured-label {
    font-size: .92rem;
    padding: 8px 15px;
    margin-bottom: 12px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machines-carousel {
    padding: 0 34px 28px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
    gap: 12px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card {
    min-height: 280px;
    padding: 14px;
    border-radius: 24px 24px 14px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(246,246,241,.94) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0,0,0,.22);
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-img {
    height: 118px;
    padding: 12px;
    border-radius: 20px 20px 10px 20px;
    background: linear-gradient(145deg, #fffdf1 0%, #f1df52 100%);
    margin-bottom: 12px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-img img {
    max-width: 88%;
    max-height: 88%;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card span {
    font-size: .65rem;
    padding: 5px 10px;
    margin-bottom: 8px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card h3 {
    font-size: .92rem;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 8px;
    color: #111;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card p {
    font-size: .79rem;
    line-height: 1.52;
    color: rgba(17,17,17,.7);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card {
    justify-content: flex-start;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card h3 {
    color: #fff;
    font-size: 1rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card p,
.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card span {
    color: rgba(255,255,255,.8);
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card a {
    font-size: .9rem;
    padding: 10px 15px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-carousel-control {
    width: 36px;
    height: 36px;
    top: 42%;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machines-indicators [data-bs-target] {
    width: 24px;
    height: 6px;
}

.about-section .benefit-item strong,
.service-card h3,
.product-card h3,
.process-card h3,
.faq-question {
    font-size: 1.02rem;
}

.service-card,
.product-card,
.process-card,
.about-media-card,
.map-card,
.faq-item {
    border-radius: 24px;
}

.footer-section p,
.footer-section li,
.footer-section a,
.terms-float p,
.terms-link,
.terms-accept {
    font-size: .9rem;
}

@media (max-width: 991px) {
    .hero-split-layout h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .section-title h2,
    .about-section h2,
    .products-section h2,
    .faq-section h2 {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card {
        min-height: auto;
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machine-img {
        height: 146px;
    }
}


/* ===== V15 HERO CLEANUP ===== */
.hero-split-layout .hero-copy-box {
    padding-top: 6px;
}

.hero-split-layout .hero-copy-box h1 {
    margin-top: 0;
}

.hero-split-layout .hero-actions {
    margin-top: 18px;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card {
    min-height: 295px;
}

@media (max-width: 1199px) {
    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== V16 MORE COMPACT TYPOGRAPHY ===== */
body {
    font-size: 14px;
}

.section-padding {
    padding: 72px 0;
}

.section-eyebrow,
.hero-tag,
.hero-split-layout .hero-featured-label {
    font-size: .8rem;
}

.section-title h2,
.about-section h2,
.products-section h2,
.faq-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.3rem);
    line-height: 1.04;
}

.section-title p,
.about-section p,
.faq-section p,
.about-copy p,
.service-card p,
.product-card p,
.process-card p,
.faq-answer,
.footer-small,
.footer-section p,
.footer-section li,
.footer-section a,
.terms-float p,
.terms-link,
.terms-accept {
    font-size: .88rem;
    line-height: 1.6;
}

.newsloc-navbar .nav-link {
    font-size: .84rem;
}

.nav-cta,
.btn-primary-newsloc,
.btn-dark-newsloc,
.btn-outline-newsloc {
    font-size: .9rem;
    padding: 10px 18px;
}

.brand-text strong,
.footer-brand-wrap strong {
    font-size: 1rem;
}

.brand-text small,
.footer-brand-wrap small {
    font-size: .64rem;
}

.hero-split-layout h1 {
    font-size: clamp(1.85rem, 3.8vw, 3.2rem);
    line-height: .95;
}

.hero-split-layout .hero-subtitle {
    font-size: .93rem;
    line-height: 1.55;
    max-width: 470px;
}

.about-section .benefit-item strong,
.service-card h3,
.product-card h3,
.process-card h3,
.faq-question {
    font-size: .96rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card span {
    font-size: .6rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card h3 {
    font-size: .86rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-highlight-card p {
    font-size: .75rem;
    line-height: 1.45;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card h3 {
    font-size: .92rem;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-cta-card a {
    font-size: .84rem;
}

@media (max-width: 767px) {
    body {
        font-size: 13.5px;
    }

    .section-title h2,
    .about-section h2,
    .products-section h2,
    .faq-section h2 {
        font-size: clamp(1.4rem, 7vw, 1.95rem);
    }

    .hero-split-layout h1 {
        font-size: clamp(1.75rem, 8.2vw, 2.5rem);
    }

    .hero-split-layout .hero-subtitle {
        font-size: .9rem;
    }
}


/* ===== V17 MOBILE CAROUSEL 2 CARDS ===== */
.machine-slide-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.machine-slide-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.featured-machines-section.featured-in-hero #machinesCarouselMobile {
    width: 100%;
}

@media (max-width: 767px) {
    #hero.hero-newsloc.hero-split-layout {
        height: auto !important;
        min-height: auto !important;
        padding: 112px 0 58px !important;
    }

    .hero-split-layout .hero-featured-embed {
        margin-top: 18px !important;
        width: 100%;
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machines-carousel {
        padding: 0 0 34px !important;
    }

    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid,
    .hero-split-layout .featured-machines-section.featured-in-hero .machine-slide-grid-mobile {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .machine-slide-grid-mobile .machine-highlight-card {
        min-height: 248px !important;
        padding: 10px !important;
        border-radius: 18px 18px 10px 18px !important;
    }

    .machine-slide-grid-mobile .machine-img {
        height: 92px !important;
        padding: 8px !important;
        margin-bottom: 8px !important;
        border-radius: 16px 16px 8px 16px !important;
    }

    .machine-slide-grid-mobile .machine-img img {
        max-width: 92% !important;
        max-height: 92% !important;
    }

    .machine-slide-grid-mobile .machine-highlight-card span {
        font-size: .52rem !important;
        padding: 4px 7px !important;
        margin-bottom: 6px !important;
    }

    .machine-slide-grid-mobile .machine-highlight-card h3 {
        font-size: .76rem !important;
        line-height: 1.12 !important;
        margin-bottom: 6px !important;
    }

    .machine-slide-grid-mobile .machine-highlight-card p {
        font-size: .66rem !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .machine-slide-grid-mobile .machine-cta-card a {
        font-size: .68rem !important;
        padding: 8px 10px !important;
    }

    .machine-slide-grid-mobile .machine-cta-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
        border-radius: 14px !important;
        margin-bottom: 10px !important;
    }

    .machine-carousel-control {
        display: none !important;
    }

    .machines-indicators {
        bottom: 2px !important;
    }

    .machines-indicators [data-bs-target] {
        width: 22px !important;
        height: 6px !important;
    }
}

/* ===== AJUSTE: IMAGEM DO PRODUTO OCUPANDO TODA A AREA ===== */
.hero-split-layout .featured-machines-section.featured-in-hero .machine-img,
.featured-machines-section .machine-img,
.machine-slide-grid-mobile .machine-img {
    padding: 0 !important;
}

.hero-split-layout .featured-machines-section.featured-in-hero .machine-img img,
.featured-machines-section .machine-img img,
.machine-slide-grid-mobile .machine-img img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
