/* Estilos generales y comunes */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

/* Hero Section */
.hero {
    background: url('../assets/hero-bg.jpg') center/cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
}
/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: #111827;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-links {
    display: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #f59e0b;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: #1f2937;
    padding: 1rem;
}

.mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: #f59e0b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/hero-bg.jpg') center/cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: #f59e0b;
    color: white;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-secondary {
    background-color: #3b82f6;
    color: white;
}

.btn-secondary:hover {
    background-color: #2563eb;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: #f3f4f6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s;
}

.feature-card h3 a:hover {
    color: #f59e0b;
}

.feature-card p {
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f59e0b;
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Barra de navegación */
.navbar {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  color: white;
  padding: 0.8rem 1rem;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

/* Links escritorio */
.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: #facc15;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #facc15;
}

/* Botón menú móvil */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Menú móvil */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0f172a;
  padding: 1rem;
  animation: slideDown 0.3s ease;
}

.mobile-link {
  color: white;
  padding: 0.7rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Animación */
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
}

.contact-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #facc15, #fbbf24);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  overflow: hidden;
}

.contact-info {
  padding: 30px;
  background: #0f172a;
  color: white;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  font-size: 1.3rem;
  color: #facc15;
  margin-right: 10px;
}

.contact-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}

textarea {
  min-height: 100px;
  resize: none;
}

.btn-submit {
  background: #facc15;
  color: black;
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-map {
  margin-top: 30px;
  text-align: center;
}

.contact-map h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.contact-map iframe:hover {
  transform: scale(1.02);
}
.brands-section {
  padding: 50px 20px;
  background: #f8fafc;
  text-align: center;
}

.brands-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0f172a;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.brand-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card img {
  max-width: 100px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.brand-card h3 {
  font-size: 1rem;
  color: #334155;
  font-weight: 600;
  text-transform: capitalize;
}

/* Efectos hover */
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.brand-card:hover img {
  transform: scale(1.1);
}
.brands-section {
  padding: 50px 20px;
  background: #f9fafb;
}

.brands-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #1f2937;
}

/* Filtros */
.brand-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
}

.brand-filters input {
  padding: 10px;
  width: 250px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-buttons button {
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  background: #e5e7eb;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-buttons button.active {
  background: #facc15;
  font-weight: bold;
}

.filter-buttons button:hover {
  background: #d1d5db;
}

/* Grid de marcas */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.brand-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.brand-card img {
  max-width: 80px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.brand-card h3 {
  font-size: 1rem;
  color: #374151;
  font-weight: 600;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.brand-card:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .brand-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .brand-filters input {
    width: 100%;
  }
}
.brands-section {
  padding: 50px 20px;
  background: #f9fafb;
}

.brands-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1f2937;
}

/* Filtros */
.brand-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  gap: 12px;
}

.brand-filters input {
  padding: 10px;
  width: 280px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  gap: 12px;
}

.filter-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: #e5e7eb;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-buttons button.active {
  background: #facc15;
  font-weight: bold;
}

.filter-buttons button:hover {
  background: #d1d5db;
}

/* Grid de marcas */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.brand-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra verticalmente */
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.brand-card img {
  max-width: 90px;
  height: auto;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.brand-card h3 {
  font-size: 1.05rem;
  color: #374151;
  font-weight: 600;
  margin: 0;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.brand-card:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .brand-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .brand-filters input {
    width: 100%;
  }
}
.about-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-top: 5px solid #facc15;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1f2937;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 25px;
}

.stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-item i {
  font-size: 1.8rem;
  color: #facc15;
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #111827;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .stats {
    justify-content: center;
  }
}
.about-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #facc15;
}

.about-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-text {
  max-width: 800px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #facc15;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.05rem;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 35px;
}

.stats {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  min-width: 160px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-item i {
  font-size: 2rem;
  color: #facc15;
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #d1d5db;
}
.tracking-form-container {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 40px;
  border-radius: 15px;
  color: white;
  max-width: 600px;
  margin: auto;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
}

.tracking-title {
  font-size: 1.8rem;
  color: #facc15;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.input-group input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.input-group button {
  background-color: #facc15;
  border: none;
  color: black;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.input-group button:hover {
  background-color: #eab308;
}

.error-message {
  margin-top: 8px;
  color: #f87171;
  font-size: 0.9rem;
}

.courier-title {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #facc15;
}

.courier-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.courier-card {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.courier-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255,255,255,0.1);
}

.courier-card img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
}
.input-group input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: black; /* 🔹 Texto del input en negro */
  background-color: white; /* 🔹 Fondo blanco para más contraste */
}
