/* DPK Transportes - Styles */
:root {
  --primary: #00a63e;
  --primary-dark: #008c35;
  --primary-light: #00c74a;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --background-alt: #f8fafb;
  --foreground: #0f1115;
  --muted: #6b7280;
  --muted-foreground: #9ca3af;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --border: #e5e7eb;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.text-lg {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.text-lg strong {
  color: var(--foreground);
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.mt-8 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

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

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--foreground);
}

.btn-header-desktop {
  display: none;
}

@media (min-width: 768px) {
  .btn-header-desktop {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--foreground);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--foreground);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

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

.nav-mobile a {
  padding: 0.5rem 0;
  color: var(--muted);
  text-decoration: none;
}

.nav-mobile a:hover {
  color: var(--foreground);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary-light);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-buttons .btn {
  min-width: 200px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-badges {
    gap: 2rem;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  color: #fff;
}

.scroll-down svg {
  width: 32px;
  height: 32px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
  opacity: 0.8;
}

.icon-check {
  color: var(--primary);
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-alt {
  background: var(--background-alt);
}

.section-primary {
  background: var(--primary);
  color: #fff;
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.section-primary .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.subsection-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Grid */
.grid-2 {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Sobre Section */
.sobre-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.sobre-feature {
  text-align: center;
  padding: 1rem;
  background: var(--background-alt);
  border-radius: var(--radius);
}

.sobre-feature .icon {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sobre-feature span {
  font-size: 0.875rem;
  font-weight: 500;
}

.sobre-image {
  position: relative;
}

.sobre-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}

.sobre-image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
}

.sobre-image-overlay p {
  font-size: 0.875rem;
  color: var(--muted);
}

.sobre-image-overlay strong {
  color: var(--foreground);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-item .icon {
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3.5rem;
  }
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-sublabel {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-grid .card {
  padding: 1.5rem;
  text-align: center;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0, 166, 62, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.services-grid h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.services-grid p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Check List */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--muted);
}

/* Info Box */
.info-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--background-alt);
  border-radius: var(--radius);
}

.info-box h4 {
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Tracking Cards */
.tracking-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tracking-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.tracking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 166, 62, 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.tracking-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.tracking-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tracking-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Diferenciais */
.diferencias-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .diferencias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diferencias-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diferencia-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background);
  border-radius: var(--radius);
}

.diferencia-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 166, 62, 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.diferencia-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.diferencia-item span {
  font-weight: 500;
}

/* MVV Section */
.mvv-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mvv-card {
  padding: 1.5rem;
  text-align: center;
}

.mvv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0, 166, 62, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.mvv-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.mvv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mvv-card p {
  color: var(--muted);
}

.mvv-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.875rem;
}

.mvv-card li {
  padding: 0.25rem 0;
}

/* Estados Grid */
.estados-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.estado {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Seguradoras */
.seguradoras-grid {
  display: grid;
  gap: 2rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .seguradoras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seguradora-card {
  padding: 2rem;
  text-align: center;
}

.seguradora-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.seguradora-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Contato Section */
.contato-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contato-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contato-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contato-item .icon {
  color: var(--primary);
  flex-shrink: 0;
}

.contato-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contato-item p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Form */
.contato-form-container {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 166, 62, 0.1);
}

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

/* Footer */
.footer {
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
