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

:root {
  --primary: #e84118;
  --primary-dark: #c0392b;
  --dark: #1a1a2e;
  --gray: #f5f5f5;
  --text: #333;
  --white: #fff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  font-size: 2rem;
}

.logo h1 {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.logo small {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.hero::before {
  content: '🚛';
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  font-size: 20rem;
  opacity: 0.05;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left, rgba(232,65,24,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem 1.5rem;
}

.badge {
  display: inline-block;
  background: rgba(232,65,24,0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

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

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ===== NÚMEROS ===== */
.numeros {
  background: var(--primary);
  padding: 2.5rem 0;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.numero-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.numero-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 5rem 0;
  background: var(--gray);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #777;
  font-size: 1rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-top-color: var(--primary);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 5rem 0;
  background: var(--white);
}

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

.badge-dark {
  display: inline-block;
  background: rgba(232,65,24,0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sobre-texto h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sobre-texto p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sobre-lista {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sobre-lista li {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

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

.img-placeholder {
  width: 100%;
  max-width: 400px;
  height: 320px;
  background: linear-gradient(135deg, var(--dark), #0f3460);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 5rem 0;
  background: var(--gray);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.depo-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.depo-card strong {
  color: var(--dark);
  font-size: 0.9rem;
}

.estrelas {
  color: #f39c12;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ===== CONTATO ===== */
.contato {
  padding: 5rem 0;
  background: var(--dark);
}

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

.contato-info h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.contato-info p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contato-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contato-info li {
  color: #ccc;
  font-size: 0.95rem;
}

.contato-info strong {
  color: var(--white);
}

.contato-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border 0.2s;
  color: var(--text);
}

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

.contato-form textarea {
  resize: vertical;
}

.form-msg {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #25d366;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  padding: 2.5rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-content p {
  color: #666;
  font-size: 0.85rem;
}

/* ===== WHATSAPP FIXO ===== */
.wpp-fixo {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}

.wpp-fixo:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: 1fr; }
  .sobre-content { grid-template-columns: 1fr; gap: 2rem; }
  .contato-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  .servicos-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h2 { font-size: 2rem; }
  .img-placeholder { height: 220px; font-size: 5rem; }
}
