/* ======= CONFIGURACIÓN GENERAL ======= */
body {
    background-color: #FFF7EC;
    color: #4E2A0A;
    font-family: 'Times New Roman', serif;
}
.hero {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
}
        /* ======= ENCABEZADO  ======= */
header {
    background-color: #E67E22;    /* Naranja del fondo */
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo {
    height: 55px;
}
/* Enlaces del menú */
nav a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    font-weight: bold;
    font-size: 15px;
}
.carousel {
    max-width: 800px; /* Cambia el tamaño total del carrusel */
    margin: 30px auto; /* Centra el carrusel */
    border-radius: 15px;
  overflow: hidden;
}
.carousel img {
    height: 400px; /* Ajusta la altura de las imágenes */
    object-fit: cover; /* Mantiene proporción sin deformar */
}
/* Efecto al pasar el mouse */
nav a:hover {
    text-decoration: underline;
}
/* ======= PIE DE PÁGINA ======= */
footer {
    background-color: #4E2A0A;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 40px;
}
/* ======= PERSONALIZACION DE LETRAS ======= */
.lulu {
    background: rgba(0, 0, 0, 0.6); /* Fondo oscuro semitransparente */
    border-radius: 20px; /* Bordes redondeados */
    padding: 15px 25px; /* Espaciado interno */
    display: inline-block; /* Para que el fondo se ajuste al texto */
}
.lulu h5 {
    color: #F2AB0A; /* Adobe Color  */
    font-weight: bold;
}
.lulu p {
    color: #fff; /* Blanco */
    margin: 0;
}
/* sombra suave */
.lulu h5, .custom-caption p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
/* ======= BOTON  ======= */
.add-car {
    background-color: #e60000; 
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
  .add-car:hover {
    background-color: #b30000;
    transform: scale(1.05);
}
    
