/* ==========================================================================
   VENÂNCIO TRANSPORTES - ESTILOS PRINCIPAIS
   ========================================================================== */

/* --- RESETS E VARIÁVEIS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #1A2233;
  --orange: #F5A623;
  --orange-dark: #D4890A;
  --white: #fff;
  --gray-bg: #F4F5F7;
  --text-dark: #1A2233;
  --text-muted: #6B7280;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ==========================================================================
   COMPONENTES GLOBAIS
   ========================================================================== */

/* --- BOTÕES --- */
.btn-primary {
  background: var(--orange);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .6rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, .7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

/* --- ANIMAÇÕES (FADE UP) --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   ESTRUTURA DA PÁGINA
   ========================================================================== */

/* --- HEADER E NAVEGAÇÃO --- */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark);
  transition: box-shadow .3s;
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

.logo-text {
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: rgba(255, 255, 255, .85);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

nav a:hover, nav a.active {
  color: var(--orange);
}

nav a.active {
  position: relative;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  background: var(--dark);
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: rgba(255, 255, 255, .85);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .2s;
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--orange);
}

.mobile-nav .btn-primary {
  margin-top: .5rem;
  justify-content: center;
}

/* --- HERO SECTION --- */
.hero {
  background: var(--dark);
  min-height: 450px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 2rem 60px;
  position: relative;
  z-index: 2;
}

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

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--dark) 10%, rgba(26, 34, 51, 0.7) 45%, transparent 100%);
  pointer-events: none;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* --- DIFERENCIAIS --- */
.diferenciais {
  background: #141c2b;
  padding: 2rem;
}

.dif-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem;
}

.dif-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.dif-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.dif-text p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

/* --- DISTRIBUIDORES --- */
.distribuidores {
  padding: 80px 2rem;
  background: var(--white);
}

.dist-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

.dist-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--dark);
}

.dist-left p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.map-wrap {
  display: flex;
  justify-content: center;
}

.dist-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.atuacao-card {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 1.5rem;
}

.atuacao-card .pin-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}

.atuacao-card .pin-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.atuacao-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  color: var(--dark);
}

.atuacao-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SERVIÇOS --- */
.servicos {
  padding: 80px 2rem;
  background: var(--gray-bg);
}

.sec-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  margin-bottom: .5rem;
}

.sec-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 3rem;
}

.srv-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.srv-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.srv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-icon svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
}

.srv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .7rem;
  color: var(--dark);
}

.srv-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- BANNER BRASIL --- */
.banner-brasil {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 450px;
}

.bb-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 2rem;
  position: relative;
  z-index: 2;
}

.bb-left {
  max-width: 580px;
}

.bb-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .3rem;
}

.bb-left h2 span {
  color: var(--orange);
}

.bb-left p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin: .8rem 0 1.8rem;
  font-size: 1rem;
  max-width: 420px;
}

.bb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bb-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--dark) 10%, rgba(26, 34, 51, 0.7) 40%, transparent 100%);
  pointer-events: none;
}

.bb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- SOBRE NÓS --- */
.sobre-nos {
  background: var(--white);
  padding: 80px 0 0 0;
}

.sobre-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6rem;
}

.eyebrow-line::before {
  content: '';
  width: 35px;
  height: 2.5px;
  background-color: var(--orange);
}

.sobre-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.sobre-text h2 span {
  color: var(--orange);
}

.sobre-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}

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

.sobre-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background-color: #E8E8E8;
  background-size: cover;
  background-position: center;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blob-anim 8s ease-in-out infinite alternate;
}

@keyframes blob-anim {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.sobre-stats {
  background: var(--dark);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-icon svg {
  width: 65px;
  height: 65px;
  stroke: var(--orange);
  stroke-width: 1.5;
}

.stat-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,0.8);
}

.stat-divider {
  width: 2px;
  height: 80px;
  background: var(--orange);
  opacity: 0.6;
}

.sobre-estrutura {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}

.sobre-estrutura h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.estrutura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.est-img {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Responsividade Sobre Nós */
@media (max-width: 992px) {
  .sobre-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sobre-text h2 {
    font-size: 2.2rem;
  }
  
  .blob-image {
    height: 400px;
  }
  
  .sobre-stats {
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 2px;
  }
  
  .estrutura-grid {
    grid-template-columns: 1fr;
  }
  
  .est-img {
    height: 250px;
  }
}

/* --- CONTATO --- */
.contato {
  background: #F0F2F5;
  padding: 70px 2rem 0;
}

.contato-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
}

.contato-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .9rem;
  font-size: .9rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 2;
}

.contact-item .wa {
  stroke: #25D366;
}

.contact-item .ph {
  stroke: var(--orange);
}

.contact-item .pin {
  stroke: var(--orange);
}

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

.contato input,
.contato textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}

.contato input:focus,
.contato textarea:focus {
  border-color: var(--orange);
}

.contato textarea {
  height: 100px;
  resize: none;
  margin-bottom: 10px;
  display: block;
}

.btn-enviar {
  width: 100%;
  background: var(--orange);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}

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

.btn-wa {
  background: var(--orange);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .8rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
  margin-top: .6rem;
}

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

.fale-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: .9rem;
  margin-bottom: .3rem;
}

/* --- FOOTER --- */
footer {
  background: #101827;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 30px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 350px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  color: #F5A623;
  margin-bottom: 20px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  transition: .3s;
}

.footer-links a:hover {
  color: #F5A623;
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1A2233;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social a:hover {
  background: #F5A623;
  transform: translateY(-5px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
}

/* --- WHATSAPP FLOAT --- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .5);
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

/* ==========================================================================
   RESPONSIVIDADE E MEDIA QUERIES
   ========================================================================== */

@media (max-width: 900px) {
  nav,
  .btn-primary.header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.open {
    display: flex;
  }

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

  .hero-img {
    display: none;
  }

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

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

  .dist-inner {
    grid-template-columns: 1fr;
  }

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

  .bb-inner {
    grid-template-columns: 1fr;
  }

  .bb-right {
    display: none;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: .8rem;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .dif-inner {
    grid-template-columns: 1fr;
  }

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

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

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .dist-left h2 {
    font-size: 1.7rem;
  }
}
