/* ==================================================
   VARIAVEIS & RESET
================================================== */
:root {
    --navy:        #212f5b;
    --navy-dark:   #182148;
    --red:         #ca2020;
    --red-hover:   #a81a1a;
    --gray-mid:    #d0d0d0;
    --gray-light:  #f0f0f0;
    --gray:        #d9d9d9;
    --white:       #fff;
    --text:        #333;
    --text-light:  #555;

    --font-heading: 'Inter', sans-serif;
    --font-body:    'Inter', sans-serif;

    --container:   1280px;
    --radius:      16px;
    --transition:  0.3s ease;
    --header-h:    96px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }

.anchor-target {
    display: block;
    height: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==================================================
   CONTAINER
================================================== */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 60px;
}

/* ==================================================
   BOTOES
================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.72em 1.6em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn--red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn--red:hover,
.btn--red:focus-visible {
    background: var(--red-hover);
    border-color: var(--red-hover);
}

.btn--navy {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    width: max-content;
}
.btn--navy:hover,
.btn--navy:focus-visible {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
    background: var(--white);
    color: var(--navy);
}

.btn__arrow {
    display: block;
    flex-shrink: 0;
    height: 0.8em;
    width: 1.1em;
    background-color: currentColor;
    -webkit-mask-image: url('../../images/seta.svg');
    mask-image: url('../../images/seta.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.btn--lg {
    font-size: 0.95rem;
    padding: 0.9em 2.2em;
}

/* ==================================================
   HEADER
   - padding-left: 5% do viewport
   - padding-right: 0 (telefone flush a direita)
================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.admin-bar .site-header              { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header          { top: 46px; }
}

.site-header .container {
    max-width: 100%;
    width: 100%;
    padding-left: 5%;
    padding-right: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-header__logo img {
    width: 360px;
    height: auto;
    display: block;
}

.site-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
}

.site-header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #212f5b;
    padding: 0.6em 1.2em;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color var(--transition);
}
.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
    color: var(--red);
}

.site-header__nav-link--work img {
    filter: none;
    width: 15px;
    height: 15px;
}

.site-header__phone {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    padding: 0 48px 0 28px;
    height: 40px;
    align-self: center;
    margin-left: 40px;
    background: #212f5b;
    border-radius: 999px 0 0 999px;
    transition: background var(--transition);
    text-decoration: none;
}
.site-header__phone:hover { background: #182148; }
.site-header__phone img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.site-header__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #212f5b;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
    opacity: 0;
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================================================
   HERO
================================================== */
.hero {
    position: relative;
    min-height: 685px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 30, 93, 0.40);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero .btn {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75em 2em;
    border: none;
}

/* ==================================================
   JIT - JUST IN TIME
   setas-jorge.svg (1920x1080) define a altura da secao;
   o conteudo fica sobre ele via position absolute.
================================================== */
.jit {
    position: relative;
    background: linear-gradient(to bottom, transparent calc(6vw + 60px), #ffffff calc(6vw + 60px));
    overflow: visible;
    margin-top: calc(-7vw - 60px);
    z-index: 2;
}

.jit__setas-wrap {
    position: relative;
    width: 100%;
}

.jit__setas-img {
    display: block;
    width: 100%;
    height: auto;
}

.jit__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.jit__text-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: -130px 0px 0px;
}

.jit__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--red);
    line-height: 1.15;
}

.jit__body {
    font-size: 20px;
    color: var(--text);
    line-height: 1.4;
    max-width: 410px;
}

.jit__mascote-col {
    position: relative;
    align-self: stretch;
    overflow: visible;
}

.jit__mascote-img {
    position: absolute;
    bottom: 0px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 105%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(33,47,91,.2));
}

.jit__caption {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    max-width: 320px;
    left: 200px;
    bottom: 40px;
}

.jit__caption p {
    font-size: 20px;
    color: var(--text);
    line-height: 1.6;
}

.jit__caption strong {
    color: var(--red);
    font-weight: 900;
}

.jit__caption a.btn.btn--red {
    width: max-content;
    text-transform: capitalize;
}

/* ==================================================
   WRAPPER GRADIENTE - Areas -> Orcamento
   Gradiente: #FFFFFF (topo) -> #1F2D5C (base)
================================================== */
.sections-gradient {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 8%, #1f2d5c 63%);
}

/* ==================================================
   AREAS DE ATUACAO
================================================== */
.areas {
    background: transparent;
    padding: 80px 0;
}

.areas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.areas__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--red);
    margin-bottom: 1.25rem;
}

.areas__text p {
    font-size: 20px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}
.areas__text p:last-child { margin-bottom: 0; }

.areas__map {
    display: flex;
    justify-content: center;
}
.areas__map img {
    width: 100%;
    max-width: 100%;
    filter: drop-shadow(0 4px 24px rgba(33,47,91,.18));
}

/* ==================================================
   FROTA
   Setas como background absoluto de toda a secao.
   margin-top negativo faz as setas invadirem a secao acima.
================================================== */
.frota {
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-top: -8vw;
}

.frota__setas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.frota__title-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 200px 0 52px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frota__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--white);
    padding: 20px 0 0;
}

.frota__trucks {
    position: relative;
    z-index: 2;
    overflow: hidden;
    line-height: 0;
}

.frota__img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.frota__lower {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 28px 0;
    text-align: center;
}

.frota__sub {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1.4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--white);
}

/* ==================================================
   GALPAO CTA
================================================== */
.galpao {
    background: transparent;
    padding: 72px 0;
    text-align: center;
}

.galpao__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.galpao__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.galpao__img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.galpao__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galpao__info {
    text-align: left;
}

.galpao__stat {
    margin-bottom: 1.25rem;
}

.galpao__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.02em;
}

.galpao__desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
}

/* ==================================================
   ONDE ESTAMOS
   - container 2 colunas: mapa esq | texto dir
================================================== */
.location {
    background: transparent;
    padding: 20px 0 80px;
}

.location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location__map {
    width: 100%;
    aspect-ratio: 4/2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.location__map iframe {
    width: 100%;
    display: block;
}

.location__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--white);
}

.location__address p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
}

/* ==================================================
   ORCAMENTO CTA
================================================== */
.orcamento {
    background: transparent;
    padding: 72px 0;
}
.frota-page .orcamento {
    background: var(--navy);
}

.orcamento__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.orcamento__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.2;
}

/* ==================================================
   FOOTER
   - paginas internas: fundo #d9d9d9
   - homepage: fundo #ffffff (sobrescreve via body.is-front-page)
================================================== */
.site-footer {
    background: #d9d9d9;
}
.is-front-page .site-footer {
    background: #ffffff;
}

.site-footer .container {
    max-width: 100%;
    padding-inline: 15%;
}

.site-footer__inner {
    display: flex;
    gap: 3rem;
    padding: 56px 0 48px;
    align-items: flex-start;
}

.site-footer__brand img {
    width: 360px;
    height: auto;
    object-fit: contain;
}

.site-footer__cols {
    flex: 1;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.site-footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--navy);
    margin-bottom: 1rem;
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2d5c;
    transition: color var(--transition);
    line-height: 1.4;
}
.site-footer__link:hover { color: var(--navy-dark); }
.site-footer__link img {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    transition: opacity var(--transition);
}
.site-footer__link:hover img { opacity: 0.85; }

.site-footer__phone-row {
    display: flex;
    align-items: center;
    gap: 0.55em;
}
.site-footer__phone-row img {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}
.site-footer__phone-row span {
    font-size: 0.82rem;
    color: #1f2d5c;
    line-height: 1.6;
}
.site-footer__link--inline {
    color: #1f2d5c;
    font-weight: 700;
    transition: color var(--transition);
}
.site-footer__link--inline:hover { color: var(--navy-dark); }

.site-footer__bottom {
    background: var(--navy);
    padding: 8px 0;
}
.site-footer__bottom .container {
    display: flex;
    justify-content: center;
}
.site-footer__credit {
    font-size: 0.75rem;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.site-footer__credit a {
    color: #5a6ba2;
    transition: color var(--transition);
}
.site-footer__credit a:hover { color: var(--white); }

/* ==================================================
   PAGINAS INTERNAS — hero padrao
================================================== */
.page-hero {
    background: var(--navy);
    padding: 72px 0 56px;
    text-align: center;
}
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ==================================================
   CONTATO — page template
================================================== */
.contato-wrap { padding: 60px 0 80px; }

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contato-form-col h2,
.contato-info-col h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

/* Coluna de informacoes */
.contato-info-col { display: flex; flex-direction: column; gap: 2rem; }

.contato-block { display: flex; flex-direction: column; gap: 0.75rem; }

.contato-block__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contato-block__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    transition: color var(--transition);
}
.contato-block__link:hover { color: var(--red); }
.contato-block__link img { width: 24px; height: 24px; flex-shrink: 0; }

.contato-block__phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contato-block__phone-row {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
}
.contato-block__phone-row img { width: 22px; height: 22px; flex-shrink: 0; }

.contato-map {
    width: 100%;
    aspect-ratio: 4/2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.contato-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* Setores */
.contato-setores {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}
.contato-setores li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.contato-setores__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    opacity: 0.55;
}
.contato-setores__email {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}
.contato-setores__email:hover { color: var(--red); }

@media (max-width: 900px) {
    .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ==================================================
   MODAL DE FEEDBACK
================================================== */
.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.feedback-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 50, 0.72);
    cursor: not-allowed;
}
.feedback-modal__box {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2.5rem 2.5rem;
    max-width: 480px;
    width: 92%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    animation: modal-in 0.3s ease both;
}
@keyframes modal-in {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.feedback-modal__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.feedback-modal__icon--success { background: #eaf7ec; color: #2d6a2d; }
.feedback-modal__icon--error   { background: #fdf1f1; color: var(--red); font-size: 2rem; }
.feedback-modal__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.feedback-modal__text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.feedback-modal__errors {
    list-style: disc;
    text-align: left;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.feedback-modal__close {
    width: 100%;
    justify-content: center;
}

/* ==================================================
   TRABALHE CONOSCO — page template
================================================== */
.trabalhe-page { padding-bottom: 40px; }

.trabalhe-hero {
    background: var(--navy);
    padding: 80px 0 60px;
    text-align: center;
}
.trabalhe-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}
.trabalhe-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
}

.trabalhe-form-wrap { padding: 60px 0 32px; }

.cv-form { max-width: 720px; margin: 0 auto; }

.cv-form__row { margin-bottom: 1.5rem; }
.cv-form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cv-form__field { display: flex; flex-direction: column; gap: 0.4rem; }

.cv-form__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}
.cv-form__required { color: var(--red); }
.cv-form__hint {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.78rem;
}

.cv-form__input {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: #f7f8fb;
    border: 1.5px solid #d0d5e8;
    border-radius: 8px;
    padding: 0.65em 1em;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.cv-form__input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(33,47,91,.12);
}
.cv-form__textarea { resize: vertical; min-height: 120px; }

.cv-form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23212f5b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9em center;
    background-size: 20px;
    padding-right: 2.5em;
    cursor: pointer;
}

.cv-form__file {
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
}

.cv-form__actions { margin-top: 2rem; }

.form-feedback {
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.form-feedback--success {
    background: #eaf7ec;
    border: 1.5px solid #5cb85c;
    color: #2d6a2d;
}
.form-feedback--error {
    background: #fdf1f1;
    border: 1.5px solid var(--red);
    color: #8b1a1a;
}
.form-feedback--error ul { padding-left: 1.25rem; list-style: disc; }

@media (max-width: 600px) {
    .cv-form__row--2 { grid-template-columns: 1fr; }
}

/* ==================================================
   SECTIONS-DARK (wrapper para paginas internas)
   Substitui o sections-gradient da home com fundo navy solido
================================================== */
.sections-dark {
    background: var(--navy);
}

/* ==================================================
   PAGINA QUEM SOMOS
================================================== */

/* Apresentacao */
.qs-intro {
    padding: 80px 0 64px;
    background: var(--white);
    overflow: hidden;
}
.qs-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.qs-intro__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.qs-intro__title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.qs-intro__text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.qs-intro__text p:last-child { margin-bottom: 0; }

.qs-intro__mascote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.qs-intro__setas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    pointer-events: none;
}
.quem-somos-page .qs-intro__setas {
    object-fit: unset;
    opacity: 1;
}
.qs-intro__mascote-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 320px;
}
.qs-intro__jorge {
    width: 100%;
    height: auto;
    display: block;
}
.qs-intro__mascote-caption {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}
.qs-intro__mascote-caption strong { color: var(--navy); }

/* Linha do tempo */
.qs-timeline-section {
    padding: 80px 0 96px;
    background: var(--gray);
}
.qs-timeline-section__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.75rem;
}
.qs-timeline-section__sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.qs-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.qs-timeline__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--navy) 6%, var(--navy) 94%, transparent 100%);
    opacity: 0.2;
    pointer-events: none;
}
.qs-timeline__item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: center;
    margin-bottom: 2.5rem;
}
.qs-timeline__item:last-child { margin-bottom: 0; }

.qs-timeline__spacer { /* intentionally empty */ }

.qs-timeline__dot-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.qs-timeline__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--gray);
    box-shadow: 0 0 0 3px var(--navy);
    flex-shrink: 0;
}
.qs-timeline__dot--highlight {
    background: var(--red);
    box-shadow: 0 0 0 3px var(--red);
}

.qs-timeline__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 16px rgba(33,47,91,.07);
    transition: box-shadow var(--transition), transform var(--transition);
}
.qs-timeline__card:hover {
    box-shadow: 0 8px 32px rgba(33,47,91,.14);
    transform: translateY(-3px);
}
.qs-timeline__card--highlight {
    border-left: 4px solid var(--red);
}
.qs-timeline__year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    background: rgba(202,32,32,.08);
    padding: 0.2em 0.7em;
    border-radius: 100px;
    margin-bottom: 0.6rem;
}
.qs-timeline__event {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.qs-timeline__text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .qs-intro__inner { grid-template-columns: 1fr; }
    .qs-intro__setas { opacity: 0.07; }

    .qs-timeline__item {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto;
    }
    .qs-timeline__item .qs-timeline__spacer { display: none; }
    .qs-timeline__dot-wrap { grid-column: 1; grid-row: 1; align-items: flex-start; padding-top: 1.6rem; }
    .qs-timeline__item .qs-timeline__card { grid-column: 2; grid-row: 1; }
    .qs-timeline__line { left: 16px; }
}

/* ==================================================
   PAGINA NOSSA FROTA
================================================== */

/* Veiculos */
.frota-veiculos {
    padding: 80px 0 64px;
    background: var(--white);
}
.frota-veiculos__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.75rem;
}
.frota-veiculos__sub {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.frota-veiculos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.frota-card {
    background: var(--white);
    border: 2px solid #e4e8f0;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.frota-card:hover {
    box-shadow: 0 8px 32px rgba(33,47,91,.12);
    border-color: var(--navy);
}
.frota-card__icon {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.frota-card__icon img { max-height: 250px; max-width: 100%; width: auto; object-fit: contain; }
.frota-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.frota-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Diferenciais */
.frota-diferenciais {
    padding: 64px 0;
    background: var(--gray);
}
.frota-diferenciais__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}
.frota-diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.frota-diferencial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
}
.frota-diferencial-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.frota-diferencial-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Projeto Calibrar */
.frota-calibrar {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}
.frota-calibrar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.frota-calibrar__badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3em 0.9em;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.frota-calibrar__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.frota-calibrar__lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.frota-calibrar__body {
    font-size: 0.92rem;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.frota-calibrar__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.frota-calibrar__list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,.85);
    padding-left: 1.5rem;
    position: relative;
}
.frota-calibrar__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}
.frota-calibrar__visual img {
    border-radius: var(--radius);
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .frota-veiculos__grid { grid-template-columns: 1fr 1fr; }
    .frota-calibrar__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .frota-calibrar__visual { order: -1; }

    .servico-item__inner,
    .servico-item--reverse .servico-item__inner { gap: 2.5rem; }
}
@media (max-width: 768px) {
    .frota-veiculos__grid { grid-template-columns: 1fr; }
    .frota-diferenciais__grid { grid-template-columns: 1fr; }
    .frota-calibrar__title { font-size: 1.8rem; }
    .frota-calibrar { padding-bottom: 40px; }
}

/* ==================================================
   PAGINA SERVICOS
================================================== */
.servicos-page { padding-bottom: 0; }

.servico-item {
    padding: 80px 0;
    background: var(--white);
}
.servico-item--reverse {
    background: var(--gray-light);
}

.servico-item__inner {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 5rem;
    align-items: center;
}

.servico-item--reverse .servico-item__inner {
    grid-template-columns: 6fr 4fr;
}
.servico-item--reverse .servico-item__visual {
    order: 2;
}

.servico-item__visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.servico-item__mark {
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: var(--red);
    margin-bottom: 1.25rem;
}

.servico-item__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.servico-item__body {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.servico-item__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 1.75rem;
}
.servico-item__list li {
    font-size: 0.92rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.servico-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.servicos-page .sections-gradient {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 8%, #1f2d5c 25%);
    padding: 110px 0px 0px 0px;
}

.servicos-page .orcamento {
    background: var(--navy);
}

/* ==================================================
   FADE-IN (JS)
================================================== */
.will-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-fade.is-visible {
    opacity: 1;
    transform: none;
}

.site-header--scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,.5);
}

/* ==================================================
   RESPONSIVO - 1600px (rodapé)
================================================== */
@media (max-width: 1600px) {
    .site-footer .container { padding-inline: 5%; }
}

/* ==================================================
   RESPONSIVO - 1200px
================================================== */
@media (max-width: 1200px) {
    :root { --header-h: 88px; }

    .site-header .container { padding-left: 6%; }

    .site-header__logo img { width: 300px; }

    .site-header__nav-link { font-size: 0.68rem; padding: 0.5em 0.65em; }
}

/* ==================================================
   RESPONSIVO - 1024px
================================================== */
@media (max-width: 1024px) {
    .container { padding-inline: 40px; }

    .site-header__phone span { display: none; }

    .jit__overlay { grid-template-columns: 1fr 1fr; }
    .jit__caption-row { grid-template-columns: 1fr; }
    .jit__caption-spacer { display: none; }
    .jit__caption { align-items: flex-start; }

    .areas__grid { grid-template-columns: 1fr; }
    .areas__map  { justify-content: center; }
    .areas__map img { max-width: 480px; }

    .location__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

    .site-footer__inner { flex-direction: column; gap: 2rem; }
    .site-footer__brand img { width: 260px; }
    .site-footer__cols { gap: 2rem; }
}

/* ==================================================
   RESPONSIVO - 1200px a 1400px
================================================== */
@media (min-width: 1200px) and (max-width: 1400px) {
    .site-header__nav-link { font-size: 0.8rem; }
    .site-header__phone { margin-left: 20px; }

    .jit__caption { left: 240px; }
}

/* ==================================================
   RESPONSIVO - 992px a 1299px
================================================== */
@media (min-width: 992px) and (max-width: 1299px) {
    .site-header .container { padding-left: 15px; }
    .site-header__phone { margin-left: 10px; }
    .site-header__phone span { display: inline; }

    .hero__content { padding-top: 72px; padding-bottom: 72px; }

    .jit__caption { bottom: 20px; }
    .jit__caption p { font-size: 1rem; }

    .frota__sub { font-size: 1.5rem; letter-spacing: 0.18em; }

    .site-footer__inner { flex-direction: column; gap: 2rem; }
    .site-footer__brand img { width: 280px; }

    /* Cols: Redes(1fr) | Contato(1fr) | Telefones(2fr) — dá espaço para o grid 2×2 */
    .site-footer__cols {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
        gap: 1rem;
        width: 100%;
    }

    /* Grid WA + Telefones lado a lado */
    .site-footer__list:has(.site-footer__phone-row) {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .site-footer__phone-row { align-items: flex-start; }
    .site-footer__phone-row img { padding-top: 0.2em; }
    .site-footer__phone-row span {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0;
    }
    .site-footer__link--inline { font-size: 0.82rem; display: block; }
}

/* ==================================================
   RESPONSIVO - 991px (header expansivo)
================================================== */
@media (max-width: 991px) {
    :root { --header-h: 72px; }

    .site-header .container { padding-left: 15px; padding-right: 15px; }
    .site-header__logo img  { width: 280px; }

    .site-header__phone {
        border-radius: 100%;
        width: 35px;
        height: 35px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        margin-left: auto;
        margin-right: 0;
    }

    .site-header__toggle { display: flex; margin-left: 15px; }

    .site-header__nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        height: auto;
        flex: none;
        background: #ffffff;
        border-top: 1px solid rgba(33,47,91,.1);
        padding: 0.75rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        z-index: 999;
    }
    .site-header__nav.is-open { display: block; }
    .site-header__nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .site-header__nav-link {
        display: flex;
        padding: 0.85em 1.5em;
        border-radius: 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(33,47,91,.08);
    }
    .site-header__nav-link--work { border-bottom: 1px solid rgba(33,47,91,.08); }

    .jit { margin-top: 0; background: #ffffff; }
    .jit__setas-img { display: none; }
    .jit__overlay {
        position: static;
        grid-template-columns: 1fr;
        padding: 40px 15px 20px;
        gap: 1.5rem;
        inset: auto;
    }
    .jit__text-col { padding-top: 0; margin: 0; }
    .jit__mascote-col { display: none; }
    .jit__body { max-width: 100%; }

    .areas__grid { padding-inline: 15px; }

    .frota__sub { font-size: 1.2rem; letter-spacing: 0.15em; }

    .site-footer__phone-row { align-items: flex-start; }
    .site-footer__phone-row img { padding-top: 0.2em; }
    .site-footer__phone-row span {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0;
    }
    .site-footer__link--inline {
        font-size: 0.82rem;
        display: block;
    }

    .trabalhe-page { padding-bottom: 32px; }
    .trabalhe-form-wrap { padding: 40px 0 24px; }
}

/* ==================================================
   RESPONSIVO - 768px
================================================== */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .container { padding-inline: 15px; }

    .site-header__logo img { width: 220px; }

    .hero { min-height: 80vh; }
    .hero__title { font-size: 1.5rem; }
    .hero__content { padding-bottom: 48px; }

    .jit {
        margin-top: 0;
        background: #ffffff;
    }
    .jit__setas-img { display: none; }
    .jit__overlay {
        position: static;
        grid-template-columns: 1fr;
        padding: 40px 15px 20px;
        gap: 1.5rem;
        inset: auto;
    }
    .jit__text-col { padding-top: 0; margin: 0; }
    .jit__mascote-col { display: none; }
    .jit__body { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

    .areas__text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

    .areas { padding: 56px 0; }
    .areas__grid { grid-template-columns: 1fr; }
    .areas__map img { max-width: 340px; }

    .frota__title-wrap { padding: 75px 0 40px; min-height: 200px; }
    .frota__lower { padding-bottom: 40px; }
    .frota__sub { font-size: 1rem; letter-spacing: 0.12em; }

    .galpao { padding: 24px 0; }
    .galpao__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .galpao__info { text-align: center; }

    .servicos-page .sections-gradient {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 3%, #1f2d5c 15%);
    }

    .location { padding: 24px 0 40px; }
    .location__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .location__map  { aspect-ratio: 16/9; order: 2; }
    .location__text { order: 1; }

    .orcamento { padding: 48px 0; }

    .site-footer__inner { padding: 40px 0 32px; }
    .site-footer__cols { flex-wrap: wrap; }
    .site-footer__col { flex: 1 1 calc(50% - 1rem); }

    .servico-item { padding: 56px 0; }
    .servico-item__inner,
    .servico-item--reverse .servico-item__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .servico-item--reverse .servico-item__visual { order: -1; }
    .servico-item__visual img { height: 260px; }

    .contato-info-col h2 { margin-bottom: 0; }
    .contato-info-col { gap: 1.25rem; }

    .trabalhe-page { padding-bottom: 32px; }
    .trabalhe-form-wrap { padding: 40px 0 24px; }
}

/* ==================================================
   RESPONSIVO - 480px
================================================== */
@media (max-width: 480px) {
    .site-header .container { padding-left: 15px; padding-right: 15px; }
    .site-header__logo img  { width: 200px; }

    .hero__title { font-size: 1.3rem; }

    .frota__title { font-size: 2rem; }

    .galpao__title { font-size: 1.5rem; }

    .site-footer__cols { flex-direction: column; }
    .site-footer__col { flex: none; }
    .site-footer__brand img { width: 260px; }
}

/* ==================================================
   RESPONSIVO - 400px
================================================== */
@media (max-width: 400px) {
    /* Footer — telefones em coluna */
    .site-footer__phone-row { align-items: flex-start; }
    .site-footer__phone-row img { padding-top: 0.2em; }
    .site-footer__phone-row span {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0;
    }
    .site-footer__link--inline {
        font-size: 0.82rem;
        display: block;
    }

    /* Contato — telefones em coluna */
    .contato-block__phone-row { align-items: flex-start; }
    .contato-block__phone-row img { padding-top: 0.2em; }
    .contato-block__phone-row span {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0;
    }
    .contato-block__phone-row span a {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy);
        display: block;
    }
}
