/* =========================================================
   SNC — VERSÃO 2
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #263b4d;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

img,
svg {
    display: block;
}

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

:root {
    --blue: #0066b3;
    --blue-dark: #004b83;
    --blue-deep: #06365b;
    --blue-light: #eaf5fc;
    --navy: #102d43;
    --text: #536372;
    --muted: #7c8a96;
    --light: #f5f8fa;
    --white: #ffffff;
    --border: #dfe8ee;
    --green: #25d366;
    --shadow: 0 22px 60px rgba(16, 45, 67, 0.11);
    --shadow-small: 0 12px 30px rgba(16, 45, 67, 0.09);
    --transition: 0.3s ease;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 45, 67, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 8px 30px rgba(16, 45, 67, 0.09);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.84;
    flex-shrink: 0;
}

.logo-main {
    color: var(--blue);
    font-size: 39px;
    font-weight: 800;
    letter-spacing: -4px;
}

.logo-sub {
    margin-top: 7px;
    margin-left: 3px;
    color: var(--navy);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.footer-logo .logo-main {
    color: #ffffff;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link,
.dropdown-toggle {
    position: relative;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    background: none;
    border: 0;
    cursor: pointer;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
    color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.arrow {
    font-size: 16px;
    line-height: 0;
    transition: transform var(--transition);
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 23px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 365px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 25px 65px rgba(16, 45, 67, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--blue-light);
}

.dropdown-menu strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
    line-height: 1.25;
}

.dropdown-menu small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.35;
}

.dropdown-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 8px;
}

.dropdown-icon svg {
    width: 17px;
    height: 17px;
}

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

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 19px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 20px rgba(0, 102, 179, 0.18);
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 25px rgba(0, 102, 179, 0.24);
}

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

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
    transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    color: #ffffff;
    background:
        linear-gradient(118deg, #06385d 0%, #005b9e 47%, #0083c7 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 32, 54, 0.32), transparent 65%),
        radial-gradient(circle at 85% 35%, rgba(255,255,255,0.14), transparent 28%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255,255,255,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to right, transparent, black 40%, black 80%, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

.hero-glow-one {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 80px;
    border: 80px solid rgba(255,255,255,0.06);
}

.hero-glow-two {
    width: 230px;
    height: 230px;
    left: 38%;
    bottom: -170px;
    background: rgba(255,255,255,0.05);
}

.hero-grid-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 65px;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.eyebrow-line {
    width: 27px;
    height: 2px;
    display: inline-block;
    background: currentColor;
}

.hero-eyebrow {
    color: rgba(255,255,255,0.72);
}

.hero h1 {
    margin-top: 18px;
    max-width: 760px;
    font-size: clamp(46px, 5.7vw, 72px);
    line-height: 1.02;
    letter-spacing: -3.2px;
    font-weight: 500;
}

.hero h1 strong {
    display: block;
    font-weight: 800;
}

.hero p {
    max-width: 625px;
    margin-top: 25px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 23px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15px;
    transition: var(--transition);
}

.btn-primary {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.btn-primary:hover {
    background: #f0f7fb;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.17);
}

.btn-hero-outline {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}

.btn-arrow {
    font-size: 17px;
    line-height: 1;
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 38px;
    color: rgba(255,255,255,0.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #58d9ff;
    box-shadow: 0 0 0 5px rgba(88,217,255,0.10);
}

.trust-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-main {
    position: relative;
    width: min(390px, 82%);
    min-height: 360px;
    padding: 27px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
    box-shadow:
        0 30px 80px rgba(0, 31, 53, 0.26),
        inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: rotate(-4deg);
}

.hero-card-main::before {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    pointer-events: none;
}

.hero-card-top,
.hero-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-label {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -1px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #70e0ff;
    box-shadow: 0 0 0 6px rgba(112,224,255,0.10);
}

.hero-card-title {
    position: relative;
    z-index: 2;
    margin-top: 72px;
    font-size: 29px;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

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

.hero-card-title strong {
    font-weight: 800;
}

.data-bars {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
    margin-top: 48px;
}

.data-row {
    height: 5px;
    display: flex;
    gap: 9px;
}

.data-row span {
    width: 30px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.25);
}

.data-row i {
    display: block;
    height: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,0.55);
}

.hero-card-footer {
    margin-top: 40px;
    color: rgba(255,255,255,0.46);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 165px;
    padding: 13px 15px;
    color: var(--navy);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0, 35, 60, 0.2);
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.floating-card strong {
    margin-top: 1px;
    font-size: 11px;
}

.floating-card-top {
    top: 42px;
    right: 0;
}

.floating-card-bottom {
    bottom: 45px;
    left: 0;
}

.floating-icon,
.check-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 8px;
}

.floating-icon svg,
.check-icon svg {
    width: 17px;
    height: 17px;
}

.check-icon {
    color: #087c57;
    background: #e7f7ef;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 730px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.location-content h2 {
    margin-top: 16px;
    color: var(--navy);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.13;
    letter-spacing: -1.6px;
}

.section-heading h2 span,
.about-content h2 span,
.location-content h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--text);
    font-size: 14px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-brand-panel {
    position: relative;
    min-height: 485px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    background:
        linear-gradient(135deg, #0068b5 0%, #004a80 100%);
    box-shadow: var(--shadow);
}

.about-brand-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.06));
}

.about-panel-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

.circle-one {
    width: 470px;
    height: 470px;
    right: -210px;
    bottom: -210px;
}

.circle-two {
    width: 300px;
    height: 300px;
    left: -145px;
    top: -130px;
}

.about-brand-mark {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.about-brand-mark span {
    display: block;
    font-size: 91px;
    font-weight: 800;
    letter-spacing: -8px;
    line-height: 0.9;
}

.about-brand-mark small {
    display: block;
    margin-top: 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.5px;
}

.about-panel-badge {
    position: absolute;
    z-index: 3;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.badge-number {
    color: #72d6fa;
    font-size: 17px;
    font-weight: 800;
}

.about-panel-badge span:last-child {
    font-size: 8px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.about-content {
    max-width: 610px;
}

.about-content p {
    margin-top: 21px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.text-link span {
    font-size: 18px;
    transition: var(--transition);
}

.text-link:hover span {
    transform: translateX(6px);
}

/* =========================================================
   SOLUTIONS
   ========================================================= */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.solution-card {
    position: relative;
    min-height: 325px;
    padding: 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: var(--transition);
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.solution-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-small);
    transform: translateY(-7px);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: #edf2f5;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    transition: var(--transition);
}

.solution-card:hover .solution-card-number {
    color: #e5f1f8;
}

.solution-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 10px;
    transition: var(--transition);
}

.solution-icon svg {
    width: 23px;
    height: 23px;
}

.solution-card:hover .solution-icon {
    color: #ffffff;
    background: var(--blue);
    transform: translateY(-2px);
}

.solution-card h3 {
    max-width: 240px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.3;
}

.solution-card p {
    max-width: 280px;
    margin-top: 13px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
}

.card-link {
    position: absolute;
    left: 30px;
    bottom: 27px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.card-link b {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 600;
}

.solutions-footer {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.btn-secondary {
    color: var(--blue);
    border: 1px solid #bcd7e7;
    background: #ffffff;
}

.btn-secondary:hover {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px);
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(110deg, #004a80 0%, #0066b3 65%, #0082c7 100%);
}

.cta-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -230px;
    border: 80px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.eyebrow.light {
    color: rgba(255,255,255,0.65);
}

.cta h2 {
    max-width: 720px;
    margin-top: 13px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 500;
}

.cta h2 strong {
    font-weight: 800;
}

.cta p {
    max-width: 620px;
    margin-top: 13px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}

.btn-white {
    flex-shrink: 0;
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.13);
}

.btn-white:hover {
    background: #f1f7fa;
    transform: translateY(-3px);
}

.whatsapp-mini {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25a95a;
}

.whatsapp-mini svg {
    width: 21px;
    height: 21px;
}

/* =========================================================
   LOCATION
   ========================================================= */

.location-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.location-content > p {
    margin-top: 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 21px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 9px;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.contact-item p {
    margin-top: 3px;
    color: var(--text);
    font-size: 11px;
    line-height: 1.65;
}

.contact-item a:hover {
    color: var(--blue);
}

.map-wrapper {
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #eef4f7;
    box-shadow: var(--shadow-small);
}

.map-header {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.map-header span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.map-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.map-header a {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
}

.map-header a:hover {
    text-decoration: underline;
}

.map-wrapper iframe {
    width: 100%;
    height: 407px;
    display: block;
    border: 0;
    filter: saturate(0.88);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    color: #ffffff;
    background: #0b2538;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.65fr 1fr 1.35fr;
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 270px;
    margin-top: 23px;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    line-height: 1.7;
}

.franchise-note {
    display: inline-block;
    margin-top: 18px;
    color: rgba(255,255,255,0.38);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.52);
    font-size: 9px;
    line-height: 1.7;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 3px;
}

.footer-contact strong {
    color: #ffffff;
    font-size: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-content {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,0.36);
    font-size: 8px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37,211,102,0.32);
    transition: var(--transition);
}

.whatsapp-button::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(37,211,102,0.24);
    border-radius: 50%;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-button svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    stroke: none;
}

.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.05);
}

@keyframes whatsappPulse {
    0%, 55%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.13);
        opacity: 0;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .nav {
        gap: 18px;
    }

    .hero-grid-layout {
        gap: 35px;
    }

    .about-grid {
        gap: 55px;
    }

    .location-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   MOBILE / TABLET MENU
   ========================================================= */

@media (max-width: 850px) {
    .header-container {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 13px 22px 25px;
        background: #ffffff;
        border-top: 1px solid var(--border);
        box-shadow: 0 22px 35px rgba(0,0,0,0.09);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 3px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 3px;
    }

    .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border-radius: 7px;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px;
    }

    .nav-button {
        margin-top: 12px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 75px;
    }

    .hero-grid-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-visual {
        min-height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

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

    .about-brand-panel {
        min-height: 390px;
        max-width: 600px;
    }

    .about-content {
        max-width: 760px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        align-items: flex-start;
    }
}

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

@media (max-width: 600px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .logo-main {
        font-size: 35px;
    }

    .logo-sub {
        font-size: 6.5px;
    }

    .hero {
        padding-top: 115px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2.3px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-trust {
        line-height: 1.7;
    }

    .hero-visual {
        min-height: 345px;
        margin-top: 5px;
    }

    .hero-card-main {
        width: min(340px, 84%);
        min-height: 315px;
        padding: 22px;
    }

    .hero-card-title {
        margin-top: 55px;
        font-size: 25px;
    }

    .floating-card {
        min-width: 145px;
        padding: 10px 11px;
    }

    .floating-card-top {
        top: 15px;
        right: 0;
    }

    .floating-card-bottom {
        bottom: 20px;
        left: 0;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2,
    .about-content h2,
    .location-content h2 {
        font-size: 32px;
    }

    .about-brand-panel {
        min-height: 330px;
    }

    .about-brand-mark span {
        font-size: 70px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 295px;
    }

    .cta {
        padding: 65px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .btn-white {
        width: 100%;
    }

    .map-wrapper {
        min-height: 390px;
    }

    .map-header {
        min-height: 62px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 10px 15px;
    }

    .map-wrapper iframe {
        height: 325px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .footer-bottom-content {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .whatsapp-button {
        right: 17px;
        bottom: 17px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-card-main {
        width: 82%;
    }

    .floating-card {
        min-width: 132px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card small {
        font-size: 7px;
    }
}


/* =========================================================
   SNC — HOME / AJUSTE VISUAL V3
   Linguagem mais próxima da SCN Brasil:
   azul institucional + laranja de destaque
   ========================================================= */

:root {
    --blue: #0066b3;
    --blue-dark: #00528f;
    --blue-deep: #003b68;
    --blue-light: #eef7fc;
    --navy: #12324a;
    --orange: #f47b20;
    --orange-dark: #df650d;
    --orange-light: #fff2e8;
    --text: #536575;
    --muted: #7b8995;
    --light: #f5f8fa;
    --border: #dbe6ed;
}

/* Header mais limpo e institucional */
.header {
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 3px solid var(--orange);
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 55, 95, 0.12);
}

.logo-main {
    color: var(--blue);
}

.logo-sub {
    color: var(--orange);
    font-size: 7px;
    letter-spacing: 2.2px;
}

.nav-link::after {
    background: var(--orange);
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
    color: var(--blue);
}

.nav-button {
    background: var(--orange);
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(244, 123, 32, 0.22);
}

.nav-button:hover {
    background: var(--orange-dark);
    box-shadow: 0 11px 25px rgba(244, 123, 32, 0.28);
}

.dropdown-menu a:hover {
    background: var(--orange-light);
}

.dropdown-icon {
    color: var(--orange);
    background: var(--orange-light);
}

/* Hero com azul dominante e laranja claramente presente */
.hero {
    min-height: 720px;
    padding: 118px 0 78px;
    background:
        linear-gradient(112deg, #003b68 0%, #005b99 52%, #0078bd 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -130px;
    top: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,
            rgba(244, 123, 32, 0.94) 0 22%,
            rgba(244, 123, 32, 0.38) 23% 42%,
            rgba(244, 123, 32, 0.08) 43% 58%,
            transparent 59%);
    opacity: .95;
    pointer-events: none;
}

.hero-glow-one {
    width: 430px;
    height: 430px;
    right: -190px;
    top: 135px;
    border: 70px solid rgba(255,255,255,0.08);
}

.hero-grid {
    opacity: .08;
}

.hero-eyebrow {
    color: #ffffff;
}

.hero-eyebrow .eyebrow-line {
    background: var(--orange);
}

.hero h1 strong {
    color: #ff9a4f;
}

.hero-buttons .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.25);
}

.hero-buttons .btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
}

.btn-hero-outline:hover {
    color: var(--blue-deep);
    background: #ffffff;
}

.trust-dot {
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.16);
}

/* Visual do hero com aparência mais institucional */
.hero-card-main {
    border-top: 5px solid var(--orange);
}

.hero-card-top .mini-label {
    color: var(--orange);
}

.status-dot {
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.12);
}

.data-row i {
    background: linear-gradient(90deg, var(--blue), var(--orange));
}

.floating-icon {
    color: var(--orange);
    background: var(--orange-light);
}

.check-icon {
    color: #ffffff;
    background: var(--orange);
}

/* Seção institucional */
.about-brand-panel {
    background:
        linear-gradient(135deg, #003b68 0%, #0066b3 72%, #087fc1 100%);
}

.about-brand-panel::after {
    background: var(--orange);
}

.about-panel-badge {
    border-left: 4px solid var(--orange);
}

.badge-number {
    color: var(--orange);
}

.about-content .eyebrow {
    color: var(--orange);
}

.about-content h2 span {
    color: var(--blue);
}

/* Cabeçalhos de seção */
.section-heading .eyebrow {
    color: var(--orange);
}

.section-heading h2 span {
    color: var(--blue);
}

/* Cards: azul + pequenos acentos laranja */
.solution-card {
    border-top: 3px solid transparent;
}

.solution-card:hover {
    border-top-color: var(--orange);
}

.solution-icon {
    color: var(--blue);
    background: var(--blue-light);
}

.solution-card:hover .solution-icon {
    color: #ffffff;
    background: var(--orange);
}

.solution-card .text-link {
    color: var(--blue);
}

.solution-card .text-link:hover {
    color: var(--orange);
}

/* CTA */
.cta {
    background:
        linear-gradient(105deg, #003b68 0%, #005b99 72%, #006fAD 100%);
}

.cta::after {
    background: var(--orange);
    opacity: .9;
}

.cta .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
}

.cta .btn-primary:hover {
    background: var(--orange-dark);
}

/* Links e pequenos destaques */
.text-link {
    color: var(--blue);
}

.text-link:hover {
    color: var(--orange);
}

.map-live-dot {
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.12);
}

.map-header a {
    color: var(--orange);
}

/* Footer */
.footer {
    border-top: 5px solid var(--orange);
}

.footer-logo .logo-sub {
    color: var(--orange);
}

.footer-column h3 {
    color: #ffffff;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: var(--orange);
}

/* WhatsApp continua verde, mas ganha melhor acabamento */
.whatsapp-button {
    box-shadow:
        0 12px 28px rgba(0,0,0,.20),
        0 0 0 5px rgba(255,255,255,.85);
}

/* Mobile */
@media (max-width: 900px) {
    .header {
        border-bottom-width: 2px;
    }

    .nav {
        border-top: 3px solid var(--orange);
    }

    .hero {
        min-height: auto;
        padding-top: 125px;
    }

    .hero::after {
        right: -220px;
        top: 60px;
        width: 430px;
        height: 430px;
        opacity: .65;
    }
}

@media (max-width: 600px) {
    .logo-main {
        font-size: 35px;
    }

    .hero {
        padding-top: 108px;
    }

    .hero::after {
        right: -260px;
        top: 30px;
        width: 400px;
        height: 400px;
    }

    .nav-button {
        background: var(--orange);
    }
}


/* Etapa 4 — padronização do rodapé */
.footer .footer-grid{
    display:grid;
    grid-template-columns:1.25fr .75fr 1fr 1.25fr;
    gap:48px;
    align-items:start;
}
.footer .footer-column,
.footer .footer-brand{
    min-width:0;
}
.footer .footer-column h3{
    margin-bottom:18px;
}
.footer .footer-column a,
.footer .footer-column p,
.footer .footer-brand p{
    overflow-wrap:anywhere;
}
.footer .footer-contact a{
    display:block;
}
.footer .footer-bottom-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
@media(max-width:980px){
    .footer .footer-grid{grid-template-columns:1fr 1fr;gap:38px 45px}
}
@media(max-width:620px){
    .footer .footer-grid{grid-template-columns:1fr;gap:32px}
    .footer .footer-bottom-content{flex-direction:column;align-items:flex-start;gap:12px}
}


/* =========================================================
   AUDITORIA FINAL — refinamentos de interface
   ========================================================= */
.dropdown-toggle .arrow{font-size:0;line-height:1;width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);transform-origin:center;transition:transform .22s ease,margin .22s ease;margin-left:2px}
.nav-dropdown:hover .arrow,.nav-dropdown.open .arrow{transform:rotate(225deg) translate(-1px,-1px);margin-top:5px}
.about-data-visual{position:relative;z-index:2;width:min(88%,390px);text-align:center;color:#fff}.about-data-visual svg{display:block;width:100%;height:auto;filter:drop-shadow(0 18px 28px rgba(0,28,51,.22))}.about-data-visual span{display:block;margin-top:10px;font-size:11px;font-weight:700;letter-spacing:.8px;color:rgba(255,255,255,.84)}
.product-hero-icon{display:grid;place-items:center;width:76px;height:76px;margin-bottom:23px;border:1px solid rgba(255,255,255,.25);border-radius:20px;background:rgba(255,255,255,.10);box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 15px 35px rgba(0,32,56,.16);backdrop-filter:blur(6px)}
.product-hero-icon svg{width:45px;height:45px;fill:none;stroke:#ff9a4b;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.value-icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.risk .ico svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:700px){.product-hero-icon{width:64px;height:64px;border-radius:17px}.product-hero-icon svg{width:38px;height:38px}}


/* =========================================================
   SNC v1.0 — acabamento de produção
   ========================================================= */
html{scroll-behavior:smooth}
body{overflow-x:hidden}
a,button,.solution-card,.vehicle-card,.detail-product,.benefit,.risk,.step,.value-card{transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease,background-color .24s ease,color .24s ease}
.btn:hover,.nav-button:hover{transform:translateY(-2px)}
.solution-card:hover,.benefit:hover,.risk:hover,.step:hover,.value-card:hover{transform:translateY(-4px)}
.text-link span,.btn-arrow{display:inline-block;transition:transform .22s ease}
.text-link:hover span,.btn:hover .btn-arrow{transform:translateX(4px)}

/* Hero humano */
.hero-photo-visual{display:flex;align-items:center;justify-content:center}
.hero-photo-frame{position:relative;width:100%;min-height:410px;overflow:hidden;border:1px solid rgba(255,255,255,.22);border-radius:28px;box-shadow:0 28px 70px rgba(0,30,55,.28)}
.hero-photo-frame img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(.92) contrast(1.03)}
.hero-photo-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,43,72,.15),transparent 45%,rgba(5,43,72,.12)),linear-gradient(0deg,rgba(5,43,72,.35),transparent 42%)}
.hero-photo-badge{position:absolute;left:24px;right:24px;bottom:22px;display:flex;align-items:center;gap:15px;padding:16px 18px;border:1px solid rgba(255,255,255,.28);border-radius:15px;background:rgba(4,48,82,.78);backdrop-filter:blur(12px);color:#fff}
.hero-photo-badge>span{width:4px;height:43px;border-radius:10px;background:var(--orange)}
.hero-photo-badge small{display:block;margin-bottom:3px;color:#ffad6c;font-size:9px;font-weight:800;letter-spacing:1.5px}
.hero-photo-badge strong{display:block;font-size:13px;line-height:1.35}

/* Prova social / números reais */
.proof-strip{position:relative;z-index:5;margin-top:-28px;padding:0 0 12px}
.proof-grid{display:grid;grid-template-columns:1.18fr .85fr 1.2fr 1.35fr .75fr;overflow:hidden;border:1px solid #e1e9ee;border-radius:19px;background:#fff;box-shadow:0 20px 55px rgba(16,45,67,.12)}
.proof-item{display:flex;align-items:center;gap:13px;min-height:105px;padding:22px 20px;border-right:1px solid #e7edf1}
.proof-item:last-child{border-right:0}
.proof-icon{flex:0 0 38px;height:38px;display:grid;place-items:center;border-radius:10px;background:#fff2e7;color:#f27a1b;font-size:12px;font-weight:900}
.proof-item strong{display:block;color:#06365b;font-size:24px;line-height:1.05;letter-spacing:-.6px}
.proof-item small{display:block;margin-top:5px;color:#6a7c87;font-size:9px;line-height:1.45;font-weight:600}

/* Entrada sutil das seções */
.reveal{opacity:0;transform:translateY(18px)}
.reveal.is-visible{opacity:1;transform:none;transition:opacity .62s ease,transform .62s cubic-bezier(.2,.7,.2,1)}
.reveal-delay-1{transition-delay:.06s!important}.reveal-delay-2{transition-delay:.12s!important}.reveal-delay-3{transition-delay:.18s!important}

/* Acessibilidade */
:focus-visible{outline:3px solid rgba(242,122,27,.55);outline-offset:3px;border-radius:5px}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
  .reveal{opacity:1!important;transform:none!important}
}
@media(max-width:1050px){
  .proof-grid{grid-template-columns:repeat(3,1fr)}
  .proof-item:nth-child(3){border-right:0}
  .proof-item:nth-child(-n+3){border-bottom:1px solid #e7edf1}
}
@media(max-width:760px){
  .hero-photo-frame{min-height:330px;border-radius:22px}
  .proof-strip{margin-top:-15px}
  .proof-grid{grid-template-columns:1fr 1fr}
  .proof-item{min-height:95px;border-bottom:1px solid #e7edf1!important}
  .proof-item:nth-child(even){border-right:0}
  .proof-item:last-child{grid-column:1/-1;border-bottom:0!important}
}
@media(max-width:480px){
  .proof-grid{grid-template-columns:1fr}
  .proof-item{border-right:0}
  .proof-item:last-child{grid-column:auto}
  .hero-photo-badge{left:14px;right:14px;bottom:14px}
}


/* =========================================================
   HOME PREMIUM — direção visual inspirada no conceito aprovado
   ========================================================= */
.premium-hero{position:relative;min-height:650px;overflow:hidden;background:#06365b;color:#fff}
.premium-hero-bg{position:absolute;inset:0;background:
 radial-gradient(circle at 84% 26%,rgba(242,122,27,.16),transparent 24%),
 linear-gradient(110deg,#06365b 0%,#084b7c 45%,#0a619c 70%,#06365b 100%)}
.premium-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:48% 52%;min-height:650px;align-items:stretch}
.premium-hero-copy{position:relative;z-index:4;display:flex;flex-direction:column;justify-content:center;padding:145px 36px 86px 0}
.premium-kicker,.premium-section-kicker{display:flex;align-items:center;gap:11px;font-size:10px;font-weight:800;letter-spacing:1.65px}
.premium-kicker{color:rgba(255,255,255,.86);margin-bottom:22px}.premium-kicker span,.premium-section-kicker span{display:inline-block;width:30px;height:3px;border-radius:3px;background:#f27a1b}
.premium-hero h1{max-width:690px;margin:0 0 22px;font-size:clamp(45px,5vw,70px);line-height:1.01;letter-spacing:-3px;font-weight:800}.premium-hero h1 strong{display:block;color:#ff7418}
.premium-hero-copy>p{max-width:630px;margin:0;color:rgba(255,255,255,.84);font-size:15px;line-height:1.75}
.premium-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.premium-btn{display:inline-flex;align-items:center;justify-content:center;gap:13px;min-height:52px;padding:0 24px;border-radius:30px;font-size:12px;font-weight:800}.premium-btn.primary{background:#f27a1b;color:#fff;box-shadow:0 10px 25px rgba(242,122,27,.25)}.premium-btn.primary:hover{background:#ff812b;transform:translateY(-2px)}.premium-btn.ghost{border:1px solid rgba(255,255,255,.32);color:#fff;background:rgba(255,255,255,.06)}.premium-btn b{font-size:18px}
.premium-hero-people{position:relative;align-self:stretch;margin-right:calc((100vw - min(1180px, calc(100vw - 40px)))/-2);overflow:hidden}
.premium-hero-people img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:51% center;transform:scale(1.25);filter:saturate(.9) contrast(1.03)}
.premium-hero-people:before{content:"";position:absolute;z-index:2;inset:0;background:linear-gradient(90deg,#06365b 0%,rgba(6,54,91,.72) 11%,rgba(6,54,91,.20) 32%,transparent 56%),linear-gradient(0deg,rgba(6,54,91,.42),transparent 35%)}
.premium-people-fade{position:absolute;z-index:2;inset:0;background:radial-gradient(circle at 75% 25%,rgba(255,160,75,.08),transparent 25%)}
.premium-since{position:absolute;z-index:4;right:max(26px,calc((100vw - 1180px)/2));bottom:55px;display:flex;align-items:center;gap:14px;width:310px;padding:18px 20px;border:1px solid rgba(255,255,255,.32);border-radius:16px;background:rgba(5,48,81,.82);backdrop-filter:blur(13px);box-shadow:0 15px 40px rgba(0,25,45,.25)}
.premium-since i{width:4px;height:49px;border-radius:4px;background:#f27a1b}.premium-since strong{display:block;font-size:15px}.premium-since span{display:block;margin-top:4px;color:rgba(255,255,255,.8);font-size:11px;line-height:1.45}

.premium-proof{position:relative;z-index:8;margin-top:-38px;padding-bottom:15px}.premium-proof-grid{display:grid;grid-template-columns:1.05fr 1fr 1.45fr .95fr;overflow:hidden;border-radius:20px;background:#fff;box-shadow:0 20px 60px rgba(11,47,72,.14);border:1px solid #e3ebf0}.premium-proof-item{display:flex;align-items:center;gap:15px;min-height:118px;padding:24px 26px;border-right:1px solid #e4ebef}.premium-proof-item:last-child{border-right:0}.picon{flex:0 0 44px;height:44px;display:grid;place-items:center;border-radius:12px;background:#eef6fb;color:#075a94;font-size:12px;font-weight:900}.premium-proof-item strong{display:block;color:#06365b;font-size:23px;line-height:1}.premium-proof-item small{display:block;margin-top:6px;color:#1d4058;font-size:11px;font-weight:700}.premium-proof-item em{display:block;margin-top:4px;color:#83919a;font-size:8.5px;font-style:normal;line-height:1.35}

.premium-intro{padding:95px 0 105px;background:linear-gradient(180deg,#fff,#f9fbfc)}.premium-intro-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:85px;align-items:center}.premium-section-kicker{color:#0c3c5e;margin-bottom:18px}.premium-intro h2,.premium-products h2{color:#082f50;font-size:clamp(36px,4vw,54px);line-height:1.05;letter-spacing:-2px;margin:0 0 22px}.premium-intro h2 strong,.premium-products h2 strong{color:#f27a1b}.premium-intro-copy>p{max-width:540px;color:#5d7180;font-size:14px;line-height:1.9;margin-bottom:28px}.premium-intro-copy .premium-btn{width:max-content}
.premium-intro-visual{position:relative;min-height:390px}.premium-data-art{position:absolute;inset:0;overflow:hidden;border-radius:26px;background:linear-gradient(135deg,#0b426d,#0c659e);box-shadow:0 25px 60px rgba(6,54,91,.18)}.premium-data-art:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(255,155,70,.34),transparent 27%),linear-gradient(120deg,transparent 40%,rgba(255,255,255,.08));}.data-screen{position:absolute;border:1px solid rgba(255,255,255,.34);background:rgba(255,255,255,.12);backdrop-filter:blur(10px);box-shadow:0 12px 35px rgba(0,25,50,.16)}.screen-a{left:15%;top:24%;width:34%;height:39%;border-radius:13px;padding:18px}.screen-a span{display:block;height:8px;margin:10px 0;border-radius:5px;background:rgba(255,255,255,.65)}.screen-a span:nth-child(2){width:72%}.screen-a span:nth-child(3){width:48%}.screen-b{right:14%;top:17%;width:35%;height:32%;border-radius:13px;padding:17px}.screen-b b{color:#fff;font-size:28px}.screen-b i{display:inline-block;width:8px;margin:22px 4px 0 0;border-radius:3px;background:#ff8a35}.screen-b i:nth-of-type(1){height:30px}.screen-b i:nth-of-type(2){height:48px}.screen-b i:nth-of-type(3){height:65px}.data-doc{position:absolute;left:25%;bottom:15%;display:grid;place-items:center;width:80px;height:80px;border-radius:17px;background:rgba(255,255,255,.93);color:#0a609a;font-size:37px;box-shadow:0 18px 40px rgba(0,20,40,.22)}.data-shield{position:absolute;right:18%;bottom:12%;display:grid;place-items:center;width:95px;height:105px;clip-path:polygon(50% 0,92% 16%,85% 68%,50% 100%,15% 68%,8% 16%);background:#f27a1b;color:#fff;font-size:38px;font-weight:900;filter:drop-shadow(0 18px 25px rgba(0,20,40,.2))}.data-glow{position:absolute;width:180px;height:180px;left:40%;top:35%;border-radius:50%;background:rgba(255,255,255,.12);filter:blur(35px)}

.premium-products{padding:95px 0 105px;background:#f5f9fb}.premium-products-head{display:flex;align-items:end;justify-content:space-between;gap:60px;margin-bottom:42px}.premium-products-head>div{max-width:720px}.premium-products-head p{max-width:420px;color:#647987;font-size:12px;line-height:1.75}.premium-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.premium-product-card{position:relative;display:flex;align-items:center;gap:14px;min-height:126px;padding:20px 18px;border:1.5px solid #f27a1b;border-radius:16px;background:#fff;color:#0c3858;box-shadow:0 8px 24px rgba(8,47,80,.035)}.premium-product-card:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(242,122,27,.12)}.product-symbol{flex:0 0 48px;height:48px;display:grid;place-items:center;border-radius:13px;background:linear-gradient(145deg,#eef7fc,#dbeefa);color:#08639e;font-size:22px;font-weight:900}.product-symbol.shield{clip-path:polygon(50% 0,90% 15%,83% 70%,50% 100%,17% 70%,10% 15%);border-radius:0;background:#0b659f;color:#fff}.product-symbol.car{font-size:27px}.premium-product-card div{min-width:0}.premium-product-card strong{display:block;font-size:12px;line-height:1.3}.premium-product-card small{display:block;margin-top:5px;color:#7b8b95;font-size:8.5px;line-height:1.4}.premium-product-card>b{position:absolute;right:15px;bottom:12px;color:#f27a1b;font-size:16px}.premium-help-card{grid-column:span 2;display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:126px;padding:23px 28px;border-radius:16px;background:linear-gradient(125deg,#073a62,#075c94);color:#fff}.premium-help-card strong{display:block;font-size:14px}.premium-help-card span{display:block;margin-top:5px;color:rgba(255,255,255,.72);font-size:10px}.premium-help-card a{display:inline-flex;align-items:center;gap:10px;padding:13px 17px;border-radius:24px;background:#f27a1b;color:#fff;font-size:10px;font-weight:800}

.premium-closing{padding:0 0 100px;background:#f5f9fb}.premium-closing-box{display:flex;align-items:center;justify-content:space-between;gap:45px;padding:52px 58px;border-radius:22px;background:radial-gradient(circle at 86% 20%,rgba(242,122,27,.23),transparent 26%),#06365b;color:#fff}.premium-closing-box>div>span{color:#ff9a4b;font-size:9px;font-weight:800;letter-spacing:1.5px}.premium-closing h2{font-size:clamp(29px,3vw,42px);line-height:1.13;margin:10px 0}.premium-closing h2 strong{color:#ff8a35}.premium-closing p{color:rgba(255,255,255,.72);font-size:12px}

@media(max-width:1050px){
 .premium-hero-grid{grid-template-columns:52% 48%}.premium-proof-grid{grid-template-columns:1fr 1fr}.premium-proof-item:nth-child(2){border-right:0}.premium-proof-item:nth-child(-n+2){border-bottom:1px solid #e4ebef}
 .premium-product-grid{grid-template-columns:repeat(2,1fr)}.premium-help-card{grid-column:span 2}
}
@media(max-width:800px){
 .premium-hero{min-height:auto}.premium-hero-grid{display:block}.premium-hero-copy{padding:130px 0 45px}.premium-hero-people{height:430px;margin:0 calc((100vw - min(1180px,calc(100vw - 40px)))/-2)}.premium-hero-people:before{background:linear-gradient(180deg,#06365b 0%,rgba(6,54,91,.15) 28%,transparent 55%),linear-gradient(0deg,rgba(6,54,91,.4),transparent 35%)}.premium-since{right:25px}
 .premium-proof{margin-top:-24px}.premium-intro-grid{grid-template-columns:1fr;gap:45px}.premium-intro-visual{min-height:350px}.premium-products-head{display:block}.premium-products-head p{margin-top:16px}
}
@media(max-width:580px){
 .premium-hero h1{font-size:44px;letter-spacing:-2px}.premium-hero-people{height:360px}.premium-hero-people img{transform:scale(1.45);object-position:51% center}.premium-since{left:18px;right:18px;bottom:20px;width:auto}
 .premium-proof-grid{grid-template-columns:1fr}.premium-proof-item{min-height:95px;border-right:0;border-bottom:1px solid #e4ebef!important}.premium-proof-item:last-child{border-bottom:0!important}
 .premium-intro,.premium-products{padding:70px 0}.premium-intro-visual{min-height:300px}.premium-product-grid{grid-template-columns:1fr}.premium-help-card{grid-column:auto;display:block}.premium-help-card a{width:max-content;margin-top:16px}.premium-closing-box{display:block;padding:38px 28px}.premium-closing-box>a{margin-top:25px}
}

/* HOME PREMIUM V2 */
.premium-hero-people{overflow:visible}.premium-hero-people img{left:-8%;width:108%;object-position:center;transform:scale(1.08);-webkit-mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,.18) 7%,#000 24%,#000 100%);mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,.18) 7%,#000 24%,#000 100%)}.premium-hero-people:before{left:-10%;background:linear-gradient(90deg,#06365b 0%,rgba(6,54,91,.86) 9%,rgba(6,54,91,.40) 20%,rgba(6,54,91,.08) 35%,transparent 51%),linear-gradient(0deg,rgba(6,54,91,.38),transparent 36%)}
.premium-proof-grid{grid-template-columns:1fr 1.08fr 1.35fr .95fr}.premium-proof-item{gap:17px;padding:24px 25px}.proof-svg{flex:0 0 52px;width:52px;height:52px;object-fit:contain}.map-svg{width:58px;height:58px;flex-basis:58px}.premium-proof-item strong{font-size:24px}.premium-proof-item:nth-child(3) strong{font-size:15px;line-height:1.18}.premium-proof-item:nth-child(3) small{font-size:9px;line-height:1.35}.product-symbol{padding:0;background:transparent!important}.product-symbol img{width:50px;height:50px;object-fit:contain}
.premium-location{padding:95px 0;background:#fff}.premium-location-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:58px;align-items:center}.premium-location h2{margin:0 0 18px;color:#082f50;font-size:clamp(34px,3.5vw,48px);line-height:1.07;letter-spacing:-1.8px}.premium-location h2 strong{color:#f27a1b}.premium-location-copy>p{max-width:470px;color:#637784;font-size:13px;line-height:1.8}.location-address{margin:26px 0;display:flex;flex-direction:column;gap:7px;padding:19px 20px;border-left:4px solid #f27a1b;background:#f7fafc;border-radius:0 11px 11px 0}.location-address b{color:#0a3859;font-size:12px}.location-address span{color:#6d7e88;font-size:10px;line-height:1.6}.premium-map{overflow:hidden;height:390px;border-radius:22px;border:1px solid #dde7ed;box-shadow:0 18px 45px rgba(7,55,88,.10)}.premium-map iframe{width:100%;height:100%;border:0;display:block}
@media(max-width:1050px){.premium-proof-grid{grid-template-columns:1fr 1fr}}@media(max-width:800px){.premium-hero-people{overflow:hidden}.premium-hero-people img{left:0;width:100%;-webkit-mask-image:linear-gradient(to bottom,transparent 0%,#000 20%,#000 100%);mask-image:linear-gradient(to bottom,transparent 0%,#000 20%,#000 100%)}.premium-location-grid{grid-template-columns:1fr}.premium-map{height:340px}}@media(max-width:580px){.premium-location{padding:70px 0}.premium-map{height:300px}}


/* =========================================================
   HOME PREMIUM V3 — fusão Premium V2 + Revisão Final
   ========================================================= */

/* Hero: visual "Decisão com informação" da Revisão Final */
.premium-hero-grid{
  grid-template-columns:52% 48%;
}
.premium-hero-visual-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:650px;
  padding:120px 0 65px 34px;
}
.premium-hero-visual-wrap .hero-visual{
  position:relative;
  width:min(100%,540px);
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.premium-hero-visual-wrap .hero-card-main{
  transform:rotate(-1deg);
}
.premium-hero-visual-wrap .floating-card{
  z-index:4;
}
.premium-hero-visual-wrap:before{
  content:"";
  position:absolute;
  width:470px;
  height:470px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(242,122,27,.13),rgba(0,102,179,.06) 45%,transparent 70%);
  filter:blur(2px);
}

/* Cards de produtos: interação mais evidente como na Revisão Final */
.premium-product-card{
  overflow:hidden;
  isolation:isolate;
  transition:transform .28s cubic-bezier(.2,.75,.25,1),
             box-shadow .28s ease,
             border-color .28s ease,
             background-color .28s ease;
}
.premium-product-card:before{
  content:"";
  position:absolute;
  z-index:-1;
  width:95px;
  height:95px;
  right:-48px;
  top:-48px;
  border-radius:50%;
  background:rgba(242,122,27,.08);
  transform:scale(.35);
  transition:transform .35s cubic-bezier(.2,.75,.25,1);
}
.premium-product-card:hover{
  transform:translateY(-7px);
  border-color:#ff7a18;
  box-shadow:0 18px 38px rgba(8,47,80,.12),0 7px 18px rgba(242,122,27,.08);
}
.premium-product-card:hover:before{
  transform:scale(2.35);
}
.premium-product-card .product-symbol{
  transition:transform .3s cubic-bezier(.2,.75,.25,1);
}
.premium-product-card:hover .product-symbol{
  transform:translateY(-3px) scale(1.07);
}
.premium-product-card>b{
  transition:transform .25s ease,color .25s ease;
}
.premium-product-card:hover>b{
  transform:translateX(5px);
  color:#ff6b00;
}
.premium-help-card{
  transition:transform .28s ease,box-shadow .28s ease;
}
.premium-help-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(6,54,91,.18);
}

/* Neutraliza regras antigas da V2 ligadas à foto */
.premium-hero-people{display:none!important}

/* O bloco de localização volta a usar integralmente a linguagem da Revisão Final */
.location.section{
  position:relative;
  z-index:2;
}

@media(max-width:900px){
  .premium-hero-grid{grid-template-columns:1fr}
  .premium-hero-visual-wrap{
    min-height:500px;
    padding:10px 0 65px;
  }
  .premium-hero-visual-wrap .hero-visual{
    min-height:440px;
  }
}
@media(max-width:580px){
  .premium-hero-visual-wrap{
    min-height:420px;
    padding-bottom:45px;
  }
  .premium-hero-visual-wrap .hero-visual{
    transform:scale(.88);
    transform-origin:center center;
    min-height:390px;
  }
}


/* =========================================================
   V3 REFINADA — motion system + acabamento visual
   ========================================================= */
:root{
 --motion-fast:180ms;
 --motion-base:320ms;
 --motion-slow:620ms;
 --ease-premium:cubic-bezier(.2,.75,.22,1);
}

/* Hero: vida sem exagero */
.premium-hero-visual-wrap .hero-card-main{
 animation:sncFloat 5.8s ease-in-out infinite;
 transform-origin:center;
}
.premium-hero-visual-wrap .floating-card{
 animation:sncFloatSmall 4.8s ease-in-out infinite;
}
.premium-hero-visual-wrap .floating-card:nth-of-type(2){animation-delay:-1.2s}
.premium-hero-visual-wrap .floating-card:nth-of-type(3){animation-delay:-2.3s}
.premium-hero-visual-wrap:after{
 content:"";
 position:absolute;
 inset:13% 4% 10% 8%;
 pointer-events:none;
 background:linear-gradient(110deg,transparent 35%,rgba(255,255,255,.10) 48%,transparent 60%);
 transform:translateX(-125%);
 animation:heroSheen 7s ease-in-out infinite;
}
@keyframes sncFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-7px) rotate(-.35deg)}}
@keyframes sncFloatSmall{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
@keyframes heroSheen{0%,68%{transform:translateX(-125%);opacity:0}75%{opacity:.8}88%,100%{transform:translateX(125%);opacity:0}}

/* Métricas */
.premium-proof-item{position:relative;transition:transform var(--motion-base) var(--ease-premium),background var(--motion-base),box-shadow var(--motion-base)}
.premium-proof-item:hover{transform:translateY(-4px);background:#fbfdff;box-shadow:0 13px 28px rgba(6,54,91,.07)}
.proof-svg{transition:transform var(--motion-base) var(--ease-premium),filter var(--motion-base)}
.premium-proof-item:hover .proof-svg{transform:translateY(-3px) scale(1.07);filter:drop-shadow(0 7px 8px rgba(7,81,135,.14))}
.count-up{font-variant-numeric:tabular-nums}

/* Cards de produtos — interação mais rica */
.product-live{
 cursor:pointer;
 transition:transform var(--motion-base) var(--ease-premium),box-shadow var(--motion-base),border-color var(--motion-fast),background var(--motion-base);
}
.product-live:after{
 content:"";
 position:absolute;
 left:0;right:0;bottom:0;
 height:3px;
 background:linear-gradient(90deg,#f27a1b,#ff9a48);
 transform:scaleX(0);
 transform-origin:left;
 transition:transform var(--motion-base) var(--ease-premium);
}
.product-live:hover:after{transform:scaleX(1)}
.product-live:hover{transform:translateY(-8px);box-shadow:0 20px 42px rgba(8,47,80,.13);background:#fff}
.product-live:hover .product-symbol img{transform:scale(1.09) rotate(-2deg)}
.product-symbol img{transition:transform var(--motion-base) var(--ease-premium)}
.product-live:focus-visible{transform:translateY(-5px);box-shadow:0 0 0 4px rgba(242,122,27,.14),0 18px 38px rgba(8,47,80,.11)}

/* Nossa Unidade — mais presença do laranja sem descaracterizar */
.location-refined{
 overflow:hidden;
 background:
 radial-gradient(circle at 7% 15%,rgba(242,122,27,.085),transparent 20%),
 linear-gradient(180deg,#fff 0%,#fbfdfe 100%);
}
.location-refined .location-card,
.location-refined .map,
.location-refined iframe{
 transition:transform var(--motion-base) var(--ease-premium),box-shadow var(--motion-base),border-color var(--motion-base);
}
.location-refined .location-card{position:relative}
.location-refined .location-card:before{
 content:"";
 position:absolute;
 top:0;left:0;right:0;
 height:4px;
 border-radius:inherit;
 background:linear-gradient(90deg,#f27a1b,#ff9a48);
}
.location-refined .location-card:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(6,54,91,.10)}
.location-refined .map:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(6,54,91,.12)}

/* Header/dropdown: abertura mais curta e elegante */
.nav-dropdown-menu{
 transform:translateY(8px) scale(.985);
 opacity:0;
 transition:opacity var(--motion-fast) ease,transform var(--motion-fast) var(--ease-premium),visibility var(--motion-fast);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
 transform:translateY(0) scale(1);
 opacity:1;
}
.nav-dropdown-toggle svg,.dropdown-arrow,.nav-arrow{
 transition:transform 220ms var(--ease-premium);
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.is-open .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.is-open .nav-arrow{transform:rotate(180deg)}

/* Reveal refinado */
.snc-reveal{
 opacity:0;
 transform:translateY(20px);
 transition:opacity var(--motion-slow) ease,transform var(--motion-slow) var(--ease-premium);
}
.snc-reveal.from-left{transform:translateX(-22px)}
.snc-reveal.from-right{transform:translateX(22px)}
.snc-reveal.is-visible{opacity:1;transform:none}
.snc-reveal[data-delay="1"]{transition-delay:70ms}
.snc-reveal[data-delay="2"]{transition-delay:140ms}
.snc-reveal[data-delay="3"]{transition-delay:210ms}

/* Mobile: comportamento pensado, não apenas empilhado */
@media(max-width:800px){
 .premium-proof-item:hover,.product-live:hover,.location-refined .location-card:hover,.location-refined .map:hover{transform:none}
 .premium-product-grid{gap:12px}
 .product-live{min-height:116px}
}
@media(prefers-reduced-motion:reduce){
 .premium-hero-visual-wrap .hero-card-main,
 .premium-hero-visual-wrap .floating-card,
 .premium-hero-visual-wrap:after{animation:none!important}
 .snc-reveal{opacity:1!important;transform:none!important;transition:none!important}
}


/* =========================================================
   V3 REFINADA V2 — ajustes finos solicitados
   ========================================================= */

/* Segundo botão do Hero também vivo */
.ghost-live{
 position:relative;overflow:hidden;
 transition:transform .28s var(--ease-premium),background .28s,border-color .28s,box-shadow .28s,color .28s;
}
.ghost-live:before{
 content:"";position:absolute;inset:0;
 background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.18) 48%,transparent 70%);
 transform:translateX(-130%);transition:transform .48s ease;
}
.ghost-live:hover{
 transform:translateY(-3px);
 background:rgba(255,255,255,.12);
 border-color:rgba(255,255,255,.62);
 box-shadow:0 12px 28px rgba(0,25,45,.18);
}
.ghost-live:hover:before{transform:translateX(130%)}

/* Conheça a SNC: composição gráfica com mais profundidade e vida */
.premium-data-art{
 overflow:hidden;
 background:
 radial-gradient(circle at 20% 22%,rgba(242,122,27,.42),transparent 26%),
 radial-gradient(circle at 78% 70%,rgba(104,190,235,.23),transparent 27%),
 linear-gradient(135deg,#073c65 0%,#0b659d 58%,#084a78 100%);
}
.premium-data-art:after{
 content:"";position:absolute;inset:-35%;
 background:conic-gradient(from 180deg,transparent,rgba(255,255,255,.09),transparent 35%);
 animation:dataOrbit 11s linear infinite;
}
.screen-a{animation:dataFloatA 5.2s ease-in-out infinite;z-index:3}
.screen-b{animation:dataFloatB 6s ease-in-out infinite;z-index:4}
.data-doc{z-index:5;animation:dataDoc 5.5s ease-in-out infinite}
.data-shield{z-index:6;animation:dataShield 4.8s ease-in-out infinite}
.data-glow{animation:dataPulse 4.2s ease-in-out infinite}
.screen-a span{position:relative;overflow:hidden}
.screen-a span:after{
 content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
 transform:translateX(-120%);animation:dataScan 4s ease-in-out infinite;
}
.screen-b i{transform-origin:bottom;animation:barGrow 3.6s ease-in-out infinite}
.screen-b i:nth-of-type(2){animation-delay:.18s}.screen-b i:nth-of-type(3){animation-delay:.36s}
@keyframes dataFloatA{50%{transform:translate(-5px,-8px) rotate(-1deg)}}
@keyframes dataFloatB{50%{transform:translate(6px,-6px) rotate(1deg)}}
@keyframes dataDoc{50%{transform:translateY(-8px) rotate(-2deg)}}
@keyframes dataShield{50%{transform:translateY(-7px) scale(1.035)}}
@keyframes dataPulse{50%{transform:scale(1.14);opacity:.72}}
@keyframes dataScan{0%,55%{transform:translateX(-120%)}75%,100%{transform:translateX(120%)}}
@keyframes barGrow{0%,100%{transform:scaleY(.82)}50%{transform:scaleY(1.06)}}
@keyframes dataOrbit{to{transform:rotate(360deg)}}

/* Cabeçalho de Produtos centralizado */
.premium-products-head-centered{
 display:block!important;
 max-width:820px;
 margin:0 auto 44px!important;
 text-align:center;
}
.premium-products-head-centered>div{max-width:none!important}
.premium-products-head-centered .premium-section-kicker{justify-content:center}
.premium-products-head-centered h2{margin-left:auto;margin-right:auto}
.premium-products-head-centered>p{
 max-width:650px!important;
 margin:14px auto 0!important;
 font-size:12px;
 line-height:1.75;
}

/* Produto: recupera o PUMP e cria trilho azul + laranja */
.product-live{
 transform:translateY(0) scale(1);
}
.product-live:after{
 height:4px;
 background:linear-gradient(90deg,#f27a1b 0 48%,#0872b8 52% 100%);
 transform:scaleX(0);
 transform-origin:center;
}
.product-live:hover{
 transform:translateY(-9px) scale(1.018)!important;
 box-shadow:0 23px 46px rgba(8,47,80,.15),0 9px 20px rgba(242,122,27,.08)!important;
}
.product-live:hover:after{transform:scaleX(1)}
.product-live:hover .product-symbol{transform:translateY(-4px) scale(1.09)!important}

/* Precisa de orientação: deixa de ser bloco morto */
.help-live{
 position:relative;overflow:hidden;isolation:isolate;
 transition:transform .32s var(--ease-premium),box-shadow .32s ease!important;
}
.help-live:before{
 content:"";position:absolute;z-index:-1;width:180px;height:180px;right:-90px;top:-105px;
 border-radius:50%;background:rgba(242,122,27,.20);
 transition:transform .45s var(--ease-premium);
}
.help-live:after{
 content:"";position:absolute;left:0;bottom:0;width:100%;height:4px;
 background:linear-gradient(90deg,#f27a1b,#ff9a48,#0c79bb);
 transform:scaleX(.18);transform-origin:left;
 transition:transform .38s var(--ease-premium);
}
.help-live:hover{transform:translateY(-8px) scale(1.012)!important;box-shadow:0 24px 48px rgba(6,54,91,.22)!important}
.help-live:hover:before{transform:scale(1.75)}
.help-live:hover:after{transform:scaleX(1)}
.help-live a{transition:transform .26s var(--ease-premium),background .26s,box-shadow .26s}
.help-live:hover a{transform:translateX(4px);box-shadow:0 8px 20px rgba(242,122,27,.28)}

/* Nossa Unidade: moldura, laranja e CTA de Como chegar */
.location-refined{
 padding-top:92px!important;padding-bottom:96px!important;
}
.location-refined .container{
 position:relative;
}
.location-refined .container:before{
 content:"";position:absolute;inset:-24px -28px;
 border:1px solid rgba(242,122,27,.18);
 border-radius:28px;
 pointer-events:none;
 background:linear-gradient(135deg,rgba(242,122,27,.035),transparent 28%,rgba(7,81,135,.025));
}
.location-refined .section-heading,
.location-refined .location-grid,
.location-refined .location-content{position:relative;z-index:1}
.city-accent{color:#f27a1b}
.location-refined .location-card{
 border:1px solid rgba(242,122,27,.30)!important;
 box-shadow:0 14px 36px rgba(7,55,88,.08);
}
.location-refined .map{
 border:1px solid rgba(7,81,135,.15);
 box-shadow:0 15px 38px rgba(7,55,88,.09);
}
.directions-live{
 display:inline-flex!important;align-items:center;justify-content:center;gap:10px;
 min-height:48px;padding:0 22px!important;border-radius:26px!important;
 background:#f27a1b!important;color:#fff!important;border:0!important;
 font-size:11px!important;font-weight:800!important;
 box-shadow:0 9px 22px rgba(242,122,27,.22);
 transition:transform .28s var(--ease-premium),background .28s,box-shadow .28s!important;
}
.directions-live span{font-size:17px;transition:transform .25s var(--ease-premium)}
.directions-live:hover{transform:translateY(-4px);background:#ff812b!important;box-shadow:0 14px 28px rgba(242,122,27,.31)}
.directions-live:hover span{transform:translateX(4px)}

@media(max-width:800px){
 .product-live:hover,.help-live:hover,.directions-live:hover{transform:none!important}
 .location-refined .container:before{inset:-14px -8px}
}
@media(prefers-reduced-motion:reduce){
 .premium-data-art:after,.screen-a,.screen-b,.data-doc,.data-shield,.data-glow,.screen-a span:after,.screen-b i{animation:none!important}
}


/* =========================================================
   V3 REFINADA V3 — microajustes finais
   ========================================================= */

/* Produtos voltam ao eixo visual do Conheça a SNC */
.premium-products-head-centered{
 max-width:none!important;
 margin:0 0 34px!important;
 text-align:left!important;
}
.premium-products-head-centered .premium-section-kicker{
 justify-content:flex-start!important;
}
.premium-products-head-centered h2{
 margin-left:0!important;
 margin-right:0!important;
 max-width:760px;
}
.premium-products-head-centered>p{
 max-width:650px!important;
 margin:7px 0 0!important;
 font-size:12px;
 line-height:1.6;
}

/* Nossa Unidade: ícones proporcionais, alinhados e coerentes com a identidade */
.location-refined .location-item-polished{
 display:grid!important;
 grid-template-columns:44px minmax(0,1fr);
 gap:14px;
 align-items:center!important;
 min-height:62px;
}
.location-refined .location-item-polished>svg,
.location-refined .location-item-polished>.icon,
.location-refined .location-item-polished>i:first-child{
 width:42px!important;height:42px!important;
 min-width:42px!important;
 display:flex!important;align-items:center!important;justify-content:center!important;
 border-radius:13px!important;
 background:linear-gradient(145deg,#f2f8fc,#fff)!important;
 border:1px solid rgba(7,81,135,.13)!important;
 color:#075187!important;
 box-shadow:0 7px 16px rgba(7,81,135,.07);
 font-size:0!important;
 position:relative;
}
/* fallback: desenha símbolos limpos via CSS mesmo se o HTML antigo usar ícone textual */
.location-refined .location-item-polished:nth-of-type(1)>i:first-child:after,
.location-refined .location-item-polished:nth-of-type(1)>.icon:after{
 content:"";width:13px;height:17px;border:2px solid #075187;border-radius:9px 9px 11px 11px;
 box-sizing:border-box;
}
.location-refined .location-item-polished:nth-of-type(1)>i:first-child:before,
.location-refined .location-item-polished:nth-of-type(1)>.icon:before{
 content:"";position:absolute;width:4px;height:4px;border-radius:50%;background:#f27a1b;z-index:2;
}
.location-refined .location-item-polished:nth-of-type(2)>i:first-child:after,
.location-refined .location-item-polished:nth-of-type(2)>.icon:after{
 content:"☎";font-size:19px;color:#075187;line-height:1;font-family:Arial,sans-serif;
}
.location-refined .location-item-polished:nth-of-type(3)>i:first-child:after,
.location-refined .location-item-polished:nth-of-type(3)>.icon:after{
 content:"@";font-size:20px;font-weight:800;color:#075187;line-height:1;font-family:Arial,sans-serif;
}
.location-refined .location-item-polished strong{
 display:block;margin-bottom:3px;color:#063a60;font-size:12px;letter-spacing:.02em;
}
.location-refined .location-item-polished p,
.location-refined .location-item-polished a{
 margin:0;line-height:1.55;
}
.location-refined .location-item-polished:hover>i:first-child,
.location-refined .location-item-polished:hover>.icon{
 transform:translateY(-2px);
 border-color:rgba(242,122,27,.38)!important;
 box-shadow:0 10px 20px rgba(242,122,27,.09);
}
.location-refined .location-item-polished>i:first-child,
.location-refined .location-item-polished>.icon{
 transition:transform .25s var(--ease-premium),border-color .25s,box-shadow .25s;
}

@media(max-width:800px){
 .premium-products-head-centered{margin-bottom:27px!important}
 .location-refined .location-item-polished{grid-template-columns:40px minmax(0,1fr);gap:12px}
 .location-refined .location-item-polished>svg,
 .location-refined .location-item-polished>.icon,
 .location-refined .location-item-polished>i:first-child{width:40px!important;height:40px!important;min-width:40px!important}
}


/* =========================================================
   HOME — ACABAMENTO FINAL
   Somente ritmo, proporção, alinhamento e responsividade.
   ========================================================= */

/* Ritmo vertical consistente entre as seções principais */
.premium-intro,
.premium-products,
.location-refined{
 scroll-margin-top:92px;
}
.premium-intro{padding-top:94px!important;padding-bottom:94px!important}
.premium-products{padding-top:92px!important;padding-bottom:96px!important}
.location-refined{padding-top:94px!important;padding-bottom:98px!important}

/* Hero: refinamento de largura de leitura e alinhamento */
.premium-hero-copy{
 max-width:650px;
}
.premium-hero-copy h1{
 max-width:625px;
 line-height:1.055!important;
 letter-spacing:-.032em;
 margin-bottom:20px!important;
}
.premium-hero-copy>p{
 max-width:585px;
 line-height:1.72!important;
 margin-bottom:28px!important;
}
.premium-actions{
 gap:12px!important;
 align-items:center;
}
.premium-actions .premium-btn{
 min-height:48px;
 padding-left:22px!important;
 padding-right:22px!important;
}

/* Faixa de prova: mesma altura visual e divisões mais equilibradas */
.premium-proof{
 align-items:stretch;
}
.premium-proof-item{
 min-height:112px;
 display:flex;
 align-items:center;
}
.premium-proof-item strong{
 line-height:1.08;
}
.premium-proof-item small{
 line-height:1.42;
}

/* Conheça a SNC: texto e visual no mesmo eixo */
.premium-intro-grid{
 align-items:center!important;
 column-gap:64px!important;
}
.premium-intro-copy h2{
 max-width:590px;
 line-height:1.12!important;
 margin-bottom:18px!important;
}
.premium-intro-copy>p{
 max-width:610px;
 line-height:1.72!important;
}
.premium-intro-copy .premium-btn{
 margin-top:8px;
}
.premium-data-art{
 min-height:430px;
 border-radius:24px!important;
}

/* Cabeçalhos: linguagem tipográfica única */
.premium-section-kicker,
.location-refined .eyebrow{
 margin-bottom:10px!important;
}
.premium-products-head-centered{
 margin-bottom:30px!important;
}
.premium-products-head-centered h2{
 line-height:1.12!important;
 margin-bottom:0!important;
}
.premium-products-head-centered>p{
 margin-top:8px!important;
 max-width:610px!important;
}

/* Grid de produtos: alturas e respiros idênticos */
.premium-product-grid{
 gap:18px!important;
 align-items:stretch;
}
.product-live{
 min-height:202px;
 padding:25px 24px 23px!important;
 display:flex;
 flex-direction:column;
}
.product-live .product-symbol{
 margin-bottom:18px!important;
}
.product-live h3{
 line-height:1.24!important;
 margin-bottom:9px!important;
}
.product-live p{
 line-height:1.62!important;
 margin-bottom:17px!important;
}
.product-live>b{
 margin-top:auto!important;
}

/* Orientação: acompanha exatamente a largura/ritmo do grid */
.help-live{
 margin-top:20px!important;
 padding:28px 30px!important;
}
.help-live h3{margin-bottom:7px!important;line-height:1.2!important}
.help-live p{line-height:1.6!important;max-width:720px}

/* Nossa Unidade: alinhamento e proporções */
.location-refined .section-heading{
 margin-bottom:34px!important;
}
.location-refined .section-heading h2{
 line-height:1.12!important;
 max-width:660px;
}
.location-refined .location-grid{
 gap:22px!important;
 align-items:stretch!important;
}
.location-refined .location-card,
.location-refined .map{
 height:100%;
 border-radius:22px!important;
}
.location-refined .location-card{
 padding:28px!important;
}
.location-refined .location-item-polished{
 min-height:66px;
 padding:5px 0;
}
.location-refined .location-item-polished+ .location-item-polished{
 margin-top:9px;
}
.directions-live{
 margin-top:20px!important;
 min-width:148px;
}

/* CTA final: mantém presença sem excesso de espaço */
.premium-closing{
 padding-top:88px!important;
 padding-bottom:90px!important;
}
.premium-closing-box{
 padding:48px 52px!important;
}
.premium-closing-box h2{
 line-height:1.12!important;
 max-width:720px;
}

/* Desktop intermediário */
@media(max-width:1100px){
 .premium-intro-grid{column-gap:42px!important}
 .premium-data-art{min-height:400px}
 .product-live{min-height:212px}
}

/* Tablet */
@media(max-width:900px){
 .premium-intro,.premium-products,.location-refined{padding-top:74px!important;padding-bottom:76px!important}
 .premium-hero-copy{max-width:700px}
 .premium-proof-item{min-height:100px}
 .premium-intro-grid{row-gap:38px!important}
 .premium-data-art{min-height:380px}
 .premium-product-grid{gap:14px!important}
 .help-live{margin-top:16px!important}
 .location-refined .location-grid{gap:16px!important}
 .premium-closing{padding-top:72px!important;padding-bottom:74px!important}
 .premium-closing-box{padding:40px 34px!important}
}

/* Mobile: espaçamento compacto, mas sem apertar leitura/toque */
@media(max-width:640px){
 .premium-intro,.premium-products,.location-refined{padding-top:62px!important;padding-bottom:64px!important}
 .premium-hero-copy h1{line-height:1.08!important;margin-bottom:16px!important}
 .premium-hero-copy>p{line-height:1.62!important;margin-bottom:23px!important}
 .premium-actions{gap:9px!important}
 .premium-actions .premium-btn{width:100%;min-height:49px}
 .premium-proof-item{min-height:88px;padding-top:17px!important;padding-bottom:17px!important}
 .premium-intro-grid{row-gap:28px!important}
 .premium-data-art{min-height:330px;border-radius:20px!important}
 .premium-products-head-centered{margin-bottom:24px!important}
 .premium-products-head-centered>p{margin-top:6px!important}
 .premium-product-grid{gap:12px!important}
 .product-live{min-height:auto;padding:22px 20px 20px!important}
 .product-live .product-symbol{margin-bottom:14px!important}
 .help-live{padding:24px 21px!important}
 .location-refined .section-heading{margin-bottom:25px!important}
 .location-refined .location-card{padding:22px 19px!important}
 .location-refined .location-item-polished{min-height:61px}
 .directions-live{width:100%;margin-top:17px!important}
 .premium-closing{padding-top:60px!important;padding-bottom:62px!important}
 .premium-closing-box{padding:32px 22px!important;border-radius:22px!important}
}

/* Telas muito pequenas */
@media(max-width:380px){
 .premium-actions .premium-btn{padding-left:15px!important;padding-right:15px!important}
 .product-live{padding-left:18px!important;padding-right:18px!important}
 .location-refined .location-card{padding-left:17px!important;padding-right:17px!important}
}
