/* --- Estilos Frescos y Ligeros --- */

/* Importar una fuente ligera (opcional, pero da un toque fresco) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Variables de colores */
:root {
    --primary-blue: #0d6efd;
    --secondary-blue: #6f42c1;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

/* HERO SECTION CORREGIDO */

.hero-section {
    padding: 160px 0 100px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

#inicio {
    background: 
        /*linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),*/
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        /*url('./imagenes/logocombinado.png') no-repeat center center / cover; */
    color: white !important;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

#inicio .container {
    position: relative;
    z-index: 2;
}

#inicio h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

#inicio .lead {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.5rem;
}

/* HEADER NEGRO */
.navbar.bg-dark {
  background-color: #000 !important;
}
.navbar a.nav-link {
  color: #050505 !important;
}
.navbar a.nav-link:hover {
  color: #ff0000 !important;
}

/* SECCIÓN CÓMO FUNCIONA CON MARCA DE AGUA */
#como-funciona {
  background: linear-gradient(to bottom right, #003366, #004d99);
  position: relative;
  overflow: hidden;
}
#como-funciona .watermark-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('fondo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.08;
  z-index: 0;
}
#como-funciona .container {
  position: relative;
  z-index: 1;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #128C7E;
}

/* Estilos para la sección de Valores */
.valor-card {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.valor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
}

/* Estilos para Misión y Visión */
.mision-vision-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mision-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.mision-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
}

/* Ajustes para igualar altura de cards en misión-visión */
#mision-vision .row.align-items-stretch {
    align-items: stretch;
}

#mision-vision .mision-vision-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#mision-vision .flex-grow-1 {
    flex-grow: 1;
}

#mision-vision .icon-container {
    width: 50px;
    height: 50px;
}

#mision-vision .icon-container i {
    font-size: 1.2rem !important;
}

/* Asegurar que todos los cards tengan la misma altura mínima */
#mision-vision .d-flex > .mision-vision-card {
    min-height: 350px;
}

/* Responsive para misión-visión */
@media (max-width: 768px) {
    #mision-vision .d-flex > .mision-vision-card {
        min-height: 300px;
    }
}

/* Responsive para las nuevas secciones */
@media (max-width: 768px) {
    .valor-card, .mision-vision-card {
        padding: 25px !important;
    }
    
    .valor-icon, .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .valor-icon i, .icon-container i {
        font-size: 1.5rem !important;
    }
    
    /* Responsive para hero */
    #inicio {
        min-height: 60vh;
        text-align: center;
    }
    
    #inicio h1 {
        font-size: 2rem;
    }
    
    #inicio .lead {
        font-size: 1.2rem;
    }
}
/* Sección Quiénes Somos */
#quienes-somos {
    background-color: #9ff0ba;
    /* Si quieres un gradiente o algo más elaborado, puedes cambiarlo */
}

/* SECCIÓN VALORES */
#valores {
    background-color: #c5eef5;
    position: relative;
    overflow: hidden;
}

#valores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fondo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
}

#valores .container {
    position: relative;
    z-index: 1;
}


/* Ultimas modificaciones  */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* Asegurar que el texto sea legible */
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}
Y actualiza tu HTML del hero section:
php
<section id="inicio" class="hero-section text-center text-white">
  <div class="container hero-content">
    <h1 class="display-4 fw-bold">Importación de Vehículos, Tractos y Mercancías</h1>
    <p class="lead">Empresa Líder en la ciudad en el ramo de Importaciones</p>
    <a href="#contacto" class="btn btn-primary btn-lg mt-3">Contáctanos</a>
  </div>
</section>
Si quieres una versión más completa con estadísticas:
php
<section id="inicio" class="hero-section text-center text-white">
  <div class="container hero-content">
    <h1 class="display-4 fw-bold mb-4">Importación de Vehículos, Tractos y Mercancías</h1>
    <p class="lead mb-4">Empresa Líder en la ciudad en el ramo de Importaciones</p>
    
    <div class="hero-stats row justify-content-center mt-5">
      <div class="col-md-3 col-6 mb-4">
        <div class="stat-item">
          <h3 class="stat-number">15+</h3>
          <p class="stat-label">Años de Experiencia</p>
        </div>
      </div>
      <div class="col-md-3 col-6 mb-4">
        <div class="stat-item">
          <h3 class="stat-number">500+</h3>
          <p class="stat-label">Vehículos Importados</p>
        </div>
      </div>
      <div class="col-md-3 col-6">
        <div class="stat-item">
          <h3 class="stat-number">98%</h3>
          <p class="stat-label">Clientes Satisfechos</p>
        </div>
      </div>
    </div>
    
    <div class="hero-buttons mt-4">
      <a href="#contacto" class="btn btn-primary btn-lg me-3">Contáctanos</a>
      <a href="#vehiculos" class="btn btn-outline-light btn-lg">Ver Vehículos</a>
    </div>
  </div>
</section>
Y agrega estos estilos adicionales:

css
.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 2rem;
}

/* Efecto hover para los botones */
.hero-section .btn {
    transition: all 0.3s ease;
    padding: 12px 30px;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
