/* Grupo Exxa Oil — Sydney / SiteOrigin / Smart Slider fidelity */
:root {
  --header-bg: #1e1c1d;
  --accent: #fe0000;
  --btn: #1f1d1e;
  --text: #233452;
  --muted: #6d7685;
  --title: #443f3f;
  --footer-widgets: #252525;
  --footer-bar: #000;
  --panel-gray: #e2e2e2;
  --about-bg: #f5f5f5;
  --white: #fff;
  --max: 1170px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-hero: "Poppins", var(--font);
  --header-h: 110px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 15px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== Header ========== */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-wrap { width: 100%; }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  padding: 5px 0;
}
.header-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.site-logo {
  max-height: 100px;
  width: auto;
  height: auto;
}
.header-nav-col {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.btn-menu {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: .5rem;
  cursor: pointer;
  line-height: 0;
}
.btn-menu .sydney-svg-icon { display: inline-flex; }
.btn-menu svg { fill: #fff; width: 22px; height: 22px; }
.mainnav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mainnav a {
  display: block;
  padding: .65rem .9rem;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}
.mainnav a:hover,
.mainnav a.active,
.mainnav .current-menu-item > a {
  color: #fff;
  background: transparent;
}

body.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}
body.home .site-header.float-header {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 991px) {
  .header-row {
    flex-direction: column;
    justify-content: center;
    min-height: var(--header-h);
    position: relative;
    padding: 12px 0;
  }
  .header-brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .header-nav-col {
    width: 100%;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 auto;
  }
  .btn-menu { display: block; }
  .mainnav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 18px);
    min-width: 220px;
    background: rgba(0, 0, 0, 0.94);
    padding: .75rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    z-index: 1100;
  }
  .mainnav.open { display: block; }
  .mainnav ul.menu { flex-direction: column; }
  .mainnav a { padding: .75rem 1.25rem; }
}

/* ========== Hero / Smart Slider look ========== */
.hero {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  aspect-ratio: 1920 / 700;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: flex-end;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
  z-index: 0;
}
.hero-slide.active { display: flex; }
.hero-caption-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 8% 2rem 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-caption {
  background: rgba(0, 0, 0, 0.79);
  opacity: 0.7;
  padding: 30px 40px;
  max-width: min(920px, 92vw);
  text-align: right;
  color: #fff;
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  white-space: nowrap;
}
.hero-subtitle {
  font-family: var(--font-hero);
  font-size: 25px;
  line-height: 1.35;
  font-weight: 400;
  margin: .35rem 0 0;
  color: #fff;
}
@media (max-width: 780px) {
  .hero-slide { aspect-ratio: auto; min-height: 380px; }
  .hero-caption-wrap { justify-content: center; padding: 90px 15px 2rem; }
  .hero-caption { padding: 20px 22px; text-align: center; opacity: 0.8; }
  .hero-title { white-space: normal; }
  .hero-subtitle { font-size: 15px; }
  .hero-arrow { display: none !important; }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 3px;
  background: #fe0000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  line-height: 0;
}
.hero-arrow:hover,
.hero-arrow:focus { background: #000; }
.hero-arrow-prev { left: 15px; }
.hero-arrow-next { right: 15px; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  background: var(--btn);
  color: #fff !important;
  padding: 16px 32px;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: #000; color: #fff !important; }

.widget-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--title);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  letter-spacing: .02em;
}
.widget-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #211c20;
  margin: 10px auto 0;
}

/* Home about */
.home-about {
  background: var(--about-bg);
  padding: 100px 0;
  border-bottom: 1px solid #e0e0e0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 780px) {
  .home-about { padding: 50px 0; }
  .about-grid { grid-template-columns: 1fr; }
}
.about-copy p { margin: 0 0 1.1rem; color: var(--text); }
.about-copy a { color: var(--text); }
.about-copy a:hover { color: var(--accent); }
.about-copy .widget-title { margin-bottom: 1.5rem; }
.about-media img { width: 100%; height: auto; }
.about-cta { margin-top: 1.5rem; }

.roll-icon-list { margin: 1.5rem 0 0; }
.roll-icon-list .service { margin: 0 0 1.35rem; }
.roll-icon-list .list-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.roll-icon-list .icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d7685;
}
.roll-icon-list .content { flex: 1; min-width: 0; }
.roll-icon-list .content h3 {
  margin: .15rem 0 .35rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--title);
  text-transform: none;
}
.roll-icon-list .content p { margin: 0; font-size: 15px; }
.roll-icon-list .content img {
  display: inline;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Home frota / produtos */
.home-columns { padding: 50px 0; background: #fff; }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }
.home-col { text-align: center; }
.home-col h4 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--title);
  text-transform: uppercase;
}
.home-col img { width: 100%; height: auto; margin: 0 auto 12px; }
.home-col p {
  text-align: center;
  margin: 0 0 24px;
  color: var(--text);
}
.home-col .btn { margin: 0 auto; }

.home-credenciada {
  background: var(--panel-gray);
  padding: 10px 0 18px;
}
.home-credenciada .cred-title {
  color: #918a82;
  font-size: 18px;
  margin-bottom: 8px;
}
.home-credenciada .cred-title::after { background: #918a82; }
.credenciada { text-align: center; padding: 0; }
.credenciada img { margin: 0 auto; max-width: 290px; }

/* ========== Internal pages ========== */
.page-wrap { padding: 40px 0 40px; }
.entry-header { margin-bottom: 1.5rem; }
.title-post.entry-title,
.entry-title {
  font-size: 42px;
  text-transform: uppercase;
  margin: 0 0 .75rem;
  color: #233452;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }
.page-full .content-grid { grid-template-columns: 1fr; }

/* Quem Somos */
.qs-intro { margin-bottom: 1rem; }
.qs-intro::after { content: ""; display: table; clear: both; }
.qs-intro-img.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 565px;
  width: 565px;
  border: 5px solid #c7c7c7;
}
.qs-intro-img.alignright img { width: 100%; height: auto; display: block; border: 0; }
@media (max-width: 800px) {
  .qs-intro-img.alignright {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
  }
}
.qs-lead {
  text-align: left;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.55;
  color: #443f3f;
  margin: 0 0 1rem;
}
.qs-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0 40px;
  clear: both;
}
@media (max-width: 800px) { .qs-values { grid-template-columns: 1fr; } }
.qs-value {
  background: #ededed;
  color: #0a0a0a;
  padding: 30px 20px 15px;
  min-height: 440px;
  border-radius: 15px;
}
.qs-value h2 {
  text-align: center;
  color: #dd3333;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.qs-value p { margin-top: 0; }
.values-list { list-style: disc; padding-left: 1.25rem; margin: 0; }
.values-list li { padding: .25rem 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 1.5rem 0 2rem;
  clear: both;
}
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery img,
.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 850 / 400;
  object-fit: cover;
}
.gallery-item { margin: 0; }
.qs-cta { text-align: center; margin-top: 1.5rem; }
.qs-cta-band {
  position: relative;
  background: #111 url("/assets/img/bg-quem-somos.webp") center / cover no-repeat;
  color: #fff;
  padding: 100px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
}
.qs-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.qs-cta-band .container { position: relative; z-index: 1; }
.qs-cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}

/* Produtos — vertical list (not 3-col cards) */
.product-intro { margin-bottom: 1.5rem; }
.product-list { display: flex; flex-direction: column; gap: 2.5rem; margin: 1.5rem 0 2.5rem; }
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 700px) { .product-row { grid-template-columns: 1fr; } }
.product-row-media img { width: 100%; height: auto; margin: 0 auto; }
.product-row-body h3 { margin: 0 0 .5rem; text-transform: uppercase; color: #443f3f; }
.wp-video { margin: 2rem 0; background: #000; }
.wp-video video,
.wp-video-shortcode { width: 100%; max-height: 480px; display: block; background: #000; }

/* Frota */
.fleet-stats-text { margin: 0 0 1.25rem; }
.fleet-stats-text p { margin: 0 0 1rem; }
.fleet-copy { margin: 0 0 1.5rem; }
.fleet-copy p { text-align: justify; margin: 0 0 1rem; }
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: .5rem;
}
@media (max-width: 700px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-col { display: flex; flex-direction: column; gap: 30px; }
.fleet-col img { width: 100%; height: auto; object-fit: cover; }
.fleet-credenciada {
  background: #e2e2e2;
  padding: 18px 0 28px;
}
.fleet-credenciada .cred-title {
  color: #918a82;
  font-size: 18px;
  margin: 5px 0 8px;
  text-align: center;
}
.fleet-credenciada .cred-title::after { background: #918a82; }

/* Sidebar */
.sidebar { }
.sidebar-widget {
  background: transparent;
  padding: 0 0 1.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 0;
}
.sidebar-widget .widget-title,
.sidebar .widget-title {
  margin: 0 0 .75rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .4rem;
  color: #1e1c1d;
}
.sidebar-widget p,
.contact-address,
.contact-phone,
.contact-email {
  margin: .45rem 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-ico {
  flex: 0 0 18px;
  width: 18px;
  color: var(--accent);
  display: inline-flex;
  margin-top: 3px;
}
.contact-ico svg { width: 16px; height: 16px; display: block; }
.sidebar-widget a,
.contact-phone a,
.contact-email a { color: var(--accent); }
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.search-form label { flex: 1 1 auto; display: block; }
.search-field {
  width: 100%;
  padding: .55rem .7rem;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
}
.search-submit {
  background: var(--btn);
  color: #fff;
  border: 0;
  padding: .55rem .9rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
}
.search-submit:hover { background: var(--accent); }

.sidebar .widget-title::after { display: none; }

/* Contact */
.contact-form p { margin: 0 0 .35rem; font-weight: 600; font-size: 14px; }
.contact-form .wpcf7-form-control-wrap { display: block; margin-bottom: .9rem; font-weight: 400; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.checkbox-row,
.wpcf7-checkbox {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: .35rem 0 .75rem;
  font-weight: 400;
}
.wpcf7-list-item { font-weight: 400; }
.form-status { margin-top: 1rem; font-weight: 600; }
.form-status.ok { color: #0a7a2f; }
.form-status.err { color: var(--accent); }
.map-embed {
  width: 100%;
  min-height: 280px;
  height: 450px;
  border: 0;
  background: #ddd;
  display: block;
  margin: .5rem 0 1rem;
}
.g-recaptcha {
  display: inline-block;
  min-width: 304px;
  min-height: 78px;
  margin: .5rem 0 1rem;
  background: #f9f9f9;
  border: 1px dashed #ccc;
}
.grecaptcha-noscript { margin: .5rem 0; }

/* Footer */
.footer-widgets {
  background: var(--footer-widgets);
  color: #cfcfcf;
  padding: 50px 0;
}
.footer-widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) { .footer-widgets-grid { grid-template-columns: 1fr; } }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: .55rem 0;
  color: #cfcfcf;
  font-size: 15px;
}
.footer-contact img { width: 30px; height: 30px; flex: 0 0 30px; }
.footer-contact a { color: #cfcfcf; }
.footer-contact a:hover { color: #fff; }
.footer-contact a img {
  display: inline;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
}
.footer-logo img {
  margin: 0 auto;
  max-width: 219px;
}
.site-footer {
  background: var(--footer-bar);
  color: #9aa3b5;
  padding: 0;
  margin: 0;
}
.footer-bar {
  background: transparent;
  color: #9aa3b5;
  text-align: left;
  padding: 22px 0;
  font-size: 14px;
}
.go-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 2px;
  background: #211c20;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.go-top.is-visible { opacity: 1; pointer-events: auto; }
.go-top:hover { background: var(--accent); }

/* Lightbox (Fancybox-like) */
a.fancybox { cursor: zoom-in; display: inline-block; max-width: 100%; }
.gallery-item a.fancybox,
.fleet-col a.fancybox,
.product-row-media a.fancybox,
.about-media a.fancybox,
.qs-intro a.fancybox { display: block; }
.gallery-item a.fancybox img,
.fleet-col a.fancybox img { width: 100%; }
body.fb-open { overflow: hidden; }
.fb-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}
.fb-overlay[hidden] { display: none !important; }
.fb-img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.fb-close,
.fb-prev,
.fb-next {
  position: absolute;
  background: #fe0000;
  color: #fff;
  border: 0;
  cursor: pointer;
  line-height: 1;
  border-radius: 3px;
}
.fb-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 28px;
}
.fb-prev,
.fb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  font-size: 20px;
}
.fb-prev { left: 16px; }
.fb-next { right: 16px; }
.fb-close:hover,
.fb-prev:hover,
.fb-next:hover { background: #000; }

/* 404 */
.not-found { text-align: center; padding: 5rem 15px; }
.not-found h1 { font-size: 3rem; margin-bottom: .5rem; }
