* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #1C62D2;
    --ink-2: #1450b0;
    --paper: #dce9fb;
    --paper-2: #edf3fc;
    --brand: #FAB529;
    --brand-2: #fcd16e;
    --white: #ffffff;
    --line: #b8d0f5;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 14% 16%, rgba(250, 181, 41, 0.22) 0%, rgba(250, 181, 41, 0) 28%),
        radial-gradient(circle at 88% 2%, rgba(28, 98, 210, 0.2) 0%, rgba(28, 98, 210, 0) 36%),
        linear-gradient(180deg, #f4f8ff 0%, #e8f0fd 45%, #dce8fa 100%);
    color: var(--ink);
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    top: -140px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 181, 41, 0.32) 0%, rgba(250, 181, 41, 0) 70%);
}

body::after {
    width: min(46vw, 560px);
    height: min(46vw, 560px);
    bottom: -190px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 98, 210, 0.2) 0%, rgba(28, 98, 210, 0) 70%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.top-strip {
    background: var(--ink);
    color: #ddeafc;
    font-size: 0.85rem;
    border-bottom: 1px solid #1450b0;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.top-strip-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-strip-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.top-strip a {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--paper-2) 90%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(28, 98, 210, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--brand);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 7px 13px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav a:hover {
    background: var(--paper);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--brand);
    color: var(--ink);
}

.btn-yellow:hover {
    background: var(--brand-2);
    box-shadow: 0 8px 24px rgba(250, 181, 41, 0.4);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--ink-2);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(6, 26, 67, 0.2) 0%, rgba(10, 46, 108, 0.1) 42%, rgba(18, 69, 154, 0.04) 100%),
        radial-gradient(circle at 14% 24%, rgba(250, 181, 41, 0.06) 0%, rgba(250, 181, 41, 0) 28%),
        url('/v2/imagem/fundo_hero.png') center center / cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    padding: 96px 0 110px;
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    line-height: 0.95;
    margin-bottom: 20px;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(22px);
    animation: heroTitleIn 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-line-highlight {
    color: #ffe089;
    animation-delay: 0.2s;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #ffe089 0%, #fff6d4 45%, #ffe089 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: heroTitleIn, heroShimmer;
    animation-duration: 0.72s, 4.2s;
    animation-delay: 0.2s, 1.1s;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1), linear;
    animation-fill-mode: forwards;
    animation-iteration-count: 1, infinite;
}

.hero-copy {
    max-width: 620px;
    color: #c8daf7;
    font-size: 1.03rem;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-quick-links {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-quick-links a {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(6, 31, 74, 0.34);
    color: #e7efff;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-quick-links a:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    background: rgba(6, 31, 74, 0.54);
}

.hero-trust {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-trust article {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 14px 14px 12px;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    opacity: 0;
    transform: translateY(18px);
    animation: heroTitleIn 0.55s ease forwards;
}

.hero-trust article:nth-child(1) {
    animation-delay: 0.75s;
}

.hero-trust article:nth-child(2) {
    animation-delay: 0.9s;
}

.hero-trust article:nth-child(3) {
    animation-delay: 1.05s;
}

.hero-trust h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.88rem;
    color: #ffe8a7;
    margin-bottom: 4px;
}

.hero-trust p {
    font-size: 0.84rem;
    line-height: 1.35;
    color: #e4edff;
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.hero-shape-a {
    width: 280px;
    height: 280px;
    background: rgba(250, 181, 41, 0.28);
    top: -40px;
    right: 8%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-shape-b {
    width: 220px;
    height: 220px;
    background: rgba(250, 181, 41, 0.15);
    bottom: -70px;
    right: 20%;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-shape-c {
    width: 170px;
    height: 170px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    top: 26%;
    right: 33%;
    animation: orbitPulse 6.2s ease-in-out infinite;
}

.metrics {
    background: var(--brand);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.metrics article,
.principle-card {
    opacity: 0;
    transform: translateY(22px);
}

.metrics.is-visible article,
.principles.is-visible .principle-card {
    animation: cardRise 0.5s ease forwards;
}

.metrics.is-visible article:nth-child(1),
.principles.is-visible .principle-card:nth-child(1) { animation-delay: 0.05s; }
.metrics.is-visible article:nth-child(2),
.principles.is-visible .principle-card:nth-child(2) { animation-delay: 0.12s; }
.metrics.is-visible article:nth-child(3),
.principles.is-visible .principle-card:nth-child(3) { animation-delay: 0.19s; }
.metrics.is-visible article:nth-child(4),
.principles.is-visible .principle-card:nth-child(4) { animation-delay: 0.26s; }
.principles.is-visible .principle-card:nth-child(5) { animation-delay: 0.33s; }
.principles.is-visible .principle-card:nth-child(6) { animation-delay: 0.4s; }
.principles.is-visible .principle-card:nth-child(7) { animation-delay: 0.47s; }
.principles.is-visible .principle-card:nth-child(8) { animation-delay: 0.54s; }
.principles.is-visible .principle-card:nth-child(9) { animation-delay: 0.61s; }
.principles.is-visible .principle-card:nth-child(10) { animation-delay: 0.68s; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metrics article {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(28, 98, 210, 0.22);
}

.metrics article:last-child {
    border-right: 0;
}

.metrics h3 {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    line-height: 1;
}

.metrics p {
    margin-top: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #1a3060;
}

.about {
    padding: 85px 0;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

h2 {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.7rem, 4.8vw, 3rem);
    line-height: 1;
    margin-bottom: 14px;
}

.about p {
    color: #1e3a7a;
}

.about p + p {
    margin-top: 10px;
}

.about-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
}

.about-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.about-card ul {
    padding-left: 18px;
    margin-bottom: 18px;
    color: #1e3a7a;
}

.about-card li + li {
    margin-top: 7px;
}

.brands {
    padding: 78px 0;
    background: color-mix(in srgb, var(--paper) 78%, #ffffff 22%);
}

.center {
    text-align: center;
}

.carousel-container {
    position: relative;
    margin-top: 28px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--brand);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.brands-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.brand-tile {
    min-height: 160px;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: flex-end;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.brand-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.22));
}

.brand-tile span {
    position: relative;
    z-index: 1;
}

.brand-img-tile {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.brand-img-tile img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brands-carousel {
    margin-top: 28px;
}

.brands-track .marca-slide {
    flex: 0 0 calc((100% - 28px) / 3);
    min-width: calc((100% - 28px) / 3);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brands-track .marca-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(28, 98, 210, 0.1), rgba(250, 181, 41, 0.16));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.brands-track .marca-slide:hover {
    transform: translateY(-6px);
    border-color: rgba(28, 98, 210, 0.5);
    box-shadow: 0 16px 28px rgba(20, 80, 176, 0.2);
}

.brands-track .marca-slide:hover::before {
    opacity: 1;
}

.brands-track .marca-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.brands-track .marca-slide:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 14px rgba(20, 80, 176, 0.28));
}

.b1 { background: linear-gradient(120deg, #5c1320, #ac212f); }
.b2 { background: linear-gradient(120deg, #6b0f16, #b6323f); }
.b3 { background: linear-gradient(120deg, #8f5803, #cf8d12); }
.b4 { background: linear-gradient(120deg, #831414, #ce3f3f); }
.b5 { background: linear-gradient(120deg, #2a3f79, #516cb0); }
.b6 { background: linear-gradient(120deg, #106138, #239458); }

.products {
    padding: 84px 0;
    background: var(--paper-2);
}

.principles {
    padding: 84px 0;
    background: transparent;
}

.careers {
    padding: 84px 0;
    background: color-mix(in srgb, var(--paper) 74%, #ffffff 26%);
}

.careers-shortcut {
    padding: 64px 0;
    background: color-mix(in srgb, var(--paper) 70%, #ffffff 30%);
}

.careers-shortcut-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(20, 80, 176, 0.08);
}

.careers-shortcut-inner h2 {
    margin-bottom: 10px;
}

.careers-shortcut-inner p {
    color: #1f3d7f;
}

.careers-intro {
    max-width: 760px;
    color: #1f3d7f;
    margin-bottom: 24px;
}

.careers-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
}

.careers-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(20, 80, 176, 0.08);
}

.careers-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    margin-bottom: 14px;
}

.careers-areas ul {
    padding-left: 18px;
    color: #234a93;
}

.careers-areas li + li {
    margin-top: 8px;
}

.careers-form {
    display: grid;
    gap: 10px;
}

.form-alert {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.form-alert p {
    margin: 0;
    font-weight: 600;
}

.form-alert ul {
    margin-top: 8px;
    padding-left: 18px;
}

.form-alert-success {
    background: #e6f8ef;
    border-color: #73cb9a;
    color: #15613a;
}

.form-alert-error {
    background: #ffefef;
    border-color: #f2a7a7;
    color: #8a2222;
}

.careers-form label {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
}

.careers-form input,
.careers-form select,
.careers-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    background: var(--paper-2);
    color: var(--ink);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
}

.careers-form input[type="file"] {
    background: #eef4ff;
    padding: 10px;
}

.careers-form input:focus,
.careers-form select:focus,
.careers-form textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.principles h2 {
    margin-top: 8px;
    margin-bottom: 48px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.principle-card {
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.principle-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(28, 98, 210, 0.15);
}

.principle-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 12px;
    line-height: 1;
}

.principle-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.product-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.product-card {
    background: var(--ink);
    border-radius: 16px;
    overflow: hidden;
    color: var(--white);
}

.product-paint {
    height: 120px;
}

.p1 { background: linear-gradient(120deg, #8d141f, #c53a48); }
.p2 { background: linear-gradient(120deg, #20613c, #34995f); }
.p3 { background: linear-gradient(120deg, #36477d, #607ac5); }

.product-body {
    padding: 18px;
}

.product-body p {
    font-size: 0.85rem;
    color: #b8cef5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Barlow Condensed', sans-serif;
}

.product-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 6px 0 14px;
}

.product-body a {
    color: var(--brand);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-band {
    background: var(--brand);
    padding: 32px 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-band h2 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.contact {
    padding: 84px 0;
    background: var(--ink);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.contact .section-tag {
    color: var(--brand);
}

.contact p {
    color: #b8cef5;
}

.contact-list {
    margin-top: 18px;
    display: grid;
    gap: 8px;
}

.contact-form {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    background: var(--paper-2);
    color: var(--ink);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.footer {
    background: linear-gradient(140deg, #0f4aa8 0%, #1d65d1 58%, #3177de 100%);
    color: #dbe7ff;
    border-top: 1px solid #1450b0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
    gap: 26px;
    padding: 62px 0 42px;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-col h3 {
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.footer-col a,
.footer-col p {
    color: #dbe7ff;
    font-size: 1.02rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: #fff5cd;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 8px;
}

.footer-social {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 36, 88, 0.3);
}

.footer-bottom-inner {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
    color: #ecf2ff;
}

.footer-bottom a {
    color: #ffe69a;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroShimmer {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 200% center;
    }
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes orbitPulse {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.44;
    }
    50% {
        transform: translate(-8px, 10px) scale(1.07);
        opacity: 0.85;
    }
}

@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .desktop-only {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper-2);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 4%;
    }

    .nav.open {
        display: flex;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics article {
        border-right: 0;
        border-bottom: 1px solid rgba(28, 98, 210, 0.16);
    }

    .about-grid,
    .contact-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }

    .careers-shortcut-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brands-grid,
    .product-grid,
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-trust {
        grid-template-columns: 1fr;
        max-width: 430px;
    }

    .brands-track .marca-slide {
        flex: 0 0 calc((100% - 14px) / 2);
        min-width: calc((100% - 14px) / 2);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-strip-brand {
        width: 100%;
        justify-content: flex-start;
    }

    .top-strip-logo {
        height: 48px;
    }

    .hero-inner {
        padding: 72px 0 84px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
    }

    .hero-quick-links {
        gap: 8px;
    }

    .hero-quick-links a {
        font-size: 0.78rem;
        padding: 7px 12px;
    }

    .brands-grid,
    .product-grid,
    .principles-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .brands-track .marca-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 46px 0 26px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════
   MODAL — ONDE COMPRAR
═══════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 31, 47, 0.85) 0%, rgba(10, 15, 30, 0.95) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.aberto {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 620px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--brand);
}

.modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--brand);
}

.modal-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.provider-card {
    background: #f0f6ff;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 28px 20px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(28, 98, 210, 0.15);
    border-color: var(--ink);
}

.provider-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.provider-img.ze {
    height: 42px;
}

.provider-desc {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.5;
    max-width: 180px;
}

.provider-card .btn {
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.12em;
    padding: 13px 22px;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 24px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-providers {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   BANNER DE COOKIES
═══════════════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    z-index: 8888;
    padding: 0 16px 16px;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.cookie-banner.visivel {
    bottom: 0;
    pointer-events: all;
}

.cookie-inner {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 -4px 40px rgba(28, 98, 210, 0.14);
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-icon {
    color: var(--brand);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cookie-icon svg {
    width: 32px;
    height: 32px;
}

.cookie-inner p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--ink);
    min-width: 200px;
    line-height: 1.55;
}

.cookie-link {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-link:hover {
    color: var(--brand);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-accept {
    background: var(--brand);
    color: var(--ink);
}

.cookie-accept:hover {
    background: var(--brand-2);
    box-shadow: 0 6px 18px rgba(250, 181, 41, 0.4);
}

.cookie-decline {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.cookie-decline:hover {
    border-color: var(--ink);
}

@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════
   BOTÃO WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════════ */

.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 999px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    color: #1a5c36;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wabounce 2.4s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes wabounce {
    0%, 100% { transform: translateY(0); }
    45%       { transform: translateY(-7px); }
    65%       { transform: translateY(-3px); }
}

.whatsapp-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(37,211,102,0.4));
}

.whatsapp-label {
    white-space: nowrap;
}

.whatsapp-pulse {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: wapulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes wapulse {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2);   opacity: 0; }
}

@media (max-width: 640px) {
    .whatsapp-fab {
        bottom: 80px;
        right: 18px;
        padding: 10px;
        border-radius: 50%;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-pulse {
        top: 2px;
        left: 2px;
        width: 46px;
        height: 46px;
    }
}
