* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-color: #000000;
}
/* Configuración de la barra gris */
.barraNavegacion {
    position: fixed;
    width: 100%;
    z-index: 1000;
    /* Efecto cristal: negro con transparencia y desenfoque */
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    font-family: sans-serif;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Línea dorada muy sutil */
}

/* Contenedores de las secciones */
.nav-section {
  flex: 1; /* Hace que las 3 secciones midan lo mismo para centrar la imagen perfectamente */
  display: flex;
  align-items: center;
}

.center { justify-content: center; }
.right { justify-content: flex-end; }

/* Estilos del Menú Desplegable (Izquierda) */
.Menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.botonLista {
  color: gold;
  text-decoration: none;
  padding: 10px;
  font-size: 40px;
}

.lista-content {
  display: none;
  position: absolute;
  top: 45px; /* Ajusta según la altura de tu barra */
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  padding: 0;
  z-index: 10;
}

.lista-content li a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.lista-content li a:hover { background-color: #ddd; }

.lista:hover .lista-content { display: block; }

/* Estilo del Logo (Centro) */
.logo {
  height: 100px;
  width: auto;
  border: none;
  display: block;
}

/* Estilo del Botón (Derecha) */
.contactoBoton {
    background-color: rgba(212, 175, 55, 0.1);
    border: solid 1px #d4af37;
    color: #d4af37;
    padding: 10px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contactoBoton:hover {
  background-color: gold;
  color: black;
}



/* --- Estilos del Hero Específico de Motores --- */
.hero-motores {
    height: 40vh;
    min-height: 300px;
    background: url('ImagenesWeb/i30portada.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: serif;
    font-size: 4rem;
    color: white;
    letter-spacing: 5px;
    margin: 0;
}

.hero-subtitle {
    color: #d4af37;
    letter-spacing: 10px;
    font-size: 1rem;
    margin-top: 15px;
}

/* --- Título de Sección --- */
.titulo-seccion {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #000000;
    text-align: center;
    margin: 60px auto 30px;
    border-bottom: 1px solid rgb(0, 0, 0);
    width: 70%;
    padding-bottom: 15px;
}

.breadcrumbs {
    padding: 25px 10%;
    background-color: #050505;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #d4af37;
}

.separador {
    margin: 0 10px;
    color: #444;
}

.pagina-actual {
    color: #d4af37;
    font-weight: bold;
}

/* Contenedor para centrar los botones */
.contenedor-botones-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Estilo de los nuevos botones de información */
.boton-info {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #d4af37; /* Dorado corporativo */
    color: #d4af37;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 4px; /* Un toque sutil de curvatura */
}

.boton-info:hover {
    background-color: #d4af37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}



.footer {
    background-color: #000; /* Negro puro */
    color: #fff;
    padding: 60px 40px 20px 40px;
    font-family: 'Arial', sans-serif; /* O una Serif elegante para los títulos */
}

/* Redes sociales arriba a la derecha */
.RedesSociales {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.RedesSociales a {
    color: #fff;
    text-decoration: none;
}

/* Contenedor principal de Menú y Marcas */
.contenido {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    border-bottom: 1px solid #333; /* Línea sutil */
    padding-bottom: 40px;
}

.columna {
    flex: 1;
}

.titulo {
    font-family: serif; /* Para el toque de lujo */
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff; /* Línea blanca bajo el título */
    display: block;
    padding-bottom: 10px;
    color: white;
}

/* Sub-columnas internas */
.contenido1 {
    display: flex;
    justify-content: space-between;
}

.contenido1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contenido1 ul li {
    margin-bottom: 12px;
}

.contenido1 ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Parte Legal inferior */
.Legal {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 10px;
    letter-spacing: 1px;
}

.legallinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.legallinks a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    color: #ccc;
}



/* Responsive */
@media (max-width: 768px) {
    .footer-content, .footer-bottom, .sub-grid {
        flex-direction: column;
        gap: 30px;
    }
    .footer-socials {
        justify-content: center;
    }
}