/* ===================================================
   NAVI LOGISTICS — Angular, industrial, logistics-grade
   Font: Exo 2 | Sharp edges | Zero roundness
   =================================================== */

:root {
    --navy: #0A1628;
    --navy-mid: #0F1F3D;
    --navy-light: #152952;
    --blue: #1565C0;
    --blue-bright: #1E88E5;
    --blue-accent: #42A5F5;
    --cyan: #00ACC1;
    --white: #FFFFFF;
    --gray-50: #F4F6F8;
    --gray-100: #E8ECF1;
    --gray-200: #D0D7E2;
    --gray-300: #B0BBC9;
    --gray-400: #7E8C9E;
    --gray-500: #556275;
    --gray-600: #3A4858;
    --text: #0F1923;
    --text-muted: #556275;
    --accent: #1565C0;

    --shadow-hard: 0 2px 0 rgba(0,0,0,0.12);
    --shadow-card: 0 8px 32px rgba(10,22,40,0.10);
    --shadow-card-hover: 0 16px 48px rgba(10,22,40,0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Utilities ===== */
.text-white { color: var(--white); }

.text-accent {
    color: var(--blue-bright);
}

.text-gradient {
    background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Diagonal Cuts ===== */
.diagonal-cut {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.diagonal-cut-top {
    top: -1px;
    background: var(--gray-50);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.diagonal-cut-bottom {
    bottom: -1px;
    background: var(--gray-50);
    clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244,246,248,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 112px;
}

.logo img {
    height: 92px;
    width: auto;
}

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

.nav-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    padding: 8px 16px;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-track {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px;
    border: none;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: var(--transition);
}

.btn-track:hover {
    background: var(--blue) !important;
}

.btn-track .material-symbols-outlined { font-size: 16px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.btn .material-symbols-outlined { font-size: 18px; }

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21,101,192,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    clip-path: none;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(170deg, #050B15 0%, var(--navy) 40%, var(--navy-mid) 70%, var(--navy-light) 100%);
    overflow: hidden;
    padding: 100px 0 120px;
}

/* Grid pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Angular chevron shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.shape-left {
    position: absolute;
    left: 2%;
    top: 5%;
    width: 240px;
    height: auto;
    opacity: 1;
}

.shape-right {
    position: absolute;
    right: 3%;
    top: 15%;
    width: 200px;
    height: auto;
    opacity: 1;
}

/* Speed lines */
.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.speed-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
    animation: speedLine 8s linear infinite;
}

.speed-lines span:nth-child(1) { top: 20%; width: 40%; left: -40%; animation-delay: 0s; animation-duration: 6s; }
.speed-lines span:nth-child(2) { top: 40%; width: 30%; left: -30%; animation-delay: 2s; animation-duration: 7s; }
.speed-lines span:nth-child(3) { top: 60%; width: 50%; left: -50%; animation-delay: 1s; animation-duration: 8s; }
.speed-lines span:nth-child(4) { top: 75%; width: 35%; left: -35%; animation-delay: 3.5s; animation-duration: 6.5s; }
.speed-lines span:nth-child(5) { top: 88%; width: 45%; left: -45%; animation-delay: 5s; animation-duration: 7.5s; }

@keyframes speedLine {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue-accent);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-accent-line {
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero right column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-logo {
    padding: 32px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.stat-block {
    padding: 32px 28px;
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(8px);
    position: relative;
    transition: var(--transition);
}

.stat-block:hover {
    background: rgba(21,101,192,0.1);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-accent);
}

.stat-bar {
    width: 32px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

/* ===== Ticker ===== */
.ticker {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.ticker-item {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.12);
    white-space: nowrap;
    padding: 0 32px;
    transition: color 0.3s ease;
}

.ticker:hover .ticker-item {
    color: rgba(255,255,255,0.2);
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
    padding: 110px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    padding: 160px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-tag-light {
    color: var(--blue-accent);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

/* Background chevrons for sections */
.section-bg-chevrons,
.cta-bg-chevrons,
.footer-bg-chevrons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-chev, .cta-ch, .ft-ch {
    position: absolute;
    font-family: 'Exo 2', sans-serif;
    font-weight: 100;
    line-height: 1;
    user-select: none;
}

.bg-chev-1 { font-size: 35vw; top: -5%;  left: -5%;  color: rgba(255,255,255,0.015); }
.bg-chev-2 { font-size: 28vw; bottom: -8%; right: -3%; color: rgba(255,255,255,0.02); }

.cta-ch-1 { font-size: 30vw; top: -15%; left: -4%;  color: rgba(255,255,255,0.02); }
.cta-ch-2 { font-size: 25vw; bottom: -10%; right: -3%; color: rgba(255,255,255,0.015); }

.ft-ch-1 { font-size: 28vw; top: -10%; right: -4%; color: rgba(255,255,255,0.015); }
.ft-ch-2 { font-size: 22vw; bottom: 0;  left: -3%;  color: rgba(255,255,255,0.02); }

/* ===== Sobre ===== */
.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 56px;
    background: var(--gray-200);
}

.sobre-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.sobre-card:hover {
    background: var(--navy);
}

.sobre-card:hover h3,
.sobre-card:hover .sobre-icon {
    color: var(--white);
}

.sobre-card:hover p {
    color: rgba(255,255,255,0.5);
}

.sobre-card:hover .card-stripe {
    background: var(--blue-bright);
}

.sobre-card:hover .card-chevron-bg {
    color: rgba(255,255,255,0.04);
}

.card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transition: var(--transition);
}

.card-chevron-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 12rem;
    font-weight: 100;
    color: rgba(21,101,192,0.04);
    line-height: 1;
    user-select: none;
    transition: var(--transition);
}

.sobre-icon {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 24px;
    display: block;
    transition: var(--transition);
}

.sobre-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 16px;
    transition: var(--transition);
}

.sobre-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    transition: var(--transition);
}

.sobre-text {
    max-width: 800px;
}

.sobre-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    border-left: 3px solid var(--blue);
    padding-left: 24px;
}

.sobre-text strong {
    color: var(--navy);
    font-weight: 700;
}

/* ===== Serviços ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.04);
}

.servico-card {
    padding: 44px 36px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative;
}

.servico-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-bright);
    transition: width 0.5s ease;
}

.servico-card:hover {
    background: rgba(21,101,192,0.06);
    border-color: rgba(255,255,255,0.08);
}

.servico-card:hover::after {
    width: 100%;
}

.servico-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.servico-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue-accent);
    opacity: 0.5;
}

.servico-header .material-symbols-outlined {
    font-size: 28px;
    color: var(--blue-accent);
}

.servico-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 14px;
}

.servico-card > p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    margin-bottom: 24px;
}

.servico-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.servico-list li {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* ===== Diferenciais ===== */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dif-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-left: 3px solid var(--blue);
    transition: var(--transition);
    align-items: flex-start;
}

.dif-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-card);
    border-left-color: var(--blue-bright);
}

.dif-chevron {
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--blue);
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
}

.dif-card:hover .dif-chevron {
    color: var(--blue-bright);
    transform: scaleX(1.2);
}

.dif-body h3 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 8px;
}

.dif-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(170deg, var(--navy) 0%, #050B15 100%);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 680px;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-line {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Contato ===== */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    margin-bottom: 56px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contato-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contato-icon {
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contato-item h4 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 6px;
}

.contato-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contato-item a {
    color: var(--blue);
    font-weight: 600;
}

.contato-item a:hover {
    color: var(--navy);
}

/* Form */
.contato-form-wrap {
    background: var(--white);
    padding: 44px;
    border-top: 3px solid var(--blue);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: inset 0 -2px 0 var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23556275' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Map */
.map-wrap {
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    position: relative;
}

.footer-logo {
    height: 36px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-brand small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.5px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a,
.footer-col li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}

.footer-col a:hover {
    color: var(--blue-accent);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    position: relative;
}

.footer-line {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 24px;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue);
    transform: translateY(-4px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        max-width: 500px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 124px 24px 24px;
        gap: 0;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 1000;
    }

    .nav-links.active { right: 0; }

    .nav-link {
        padding: 14px 16px;
        font-size: 0.8rem;
    }

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

    .btn-track {
        margin-top: 12px;
        justify-content: center;
        clip-path: none !important;
    }

    .hero {
        padding: 120px 0 100px;
        min-height: auto;
    }

    .shape-left, .shape-right { width: 120px; }

    .section {
        padding: 80px 0;
    }

    .section-dark {
        padding: 130px 0;
    }

    .cta-section {
        padding: 130px 0;
    }

    .diagonal-cut {
        height: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contato-form-wrap {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }

    .hero h1 { font-size: 2rem; }

    .section-header h2 { font-size: 1.8rem; }

    .stat-number { font-size: 2rem; }

    .stat-block { padding: 24px 20px; }

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

    .dif-chevron { font-size: 2rem; }
}
