
body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #f70505;
    margin: 0;
    padding: 0;
}
header {
    background-color:#f70505;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li{
     background-color: transparent;
     width:130px;
     text-align: center;
}
nav ul li a {
            display: block;
            padding: 2px 5px;
            background-color: rgba(255, 255, 255, 0.1); /* fondo semitransparente por defecto */
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid #fdfdfb;
            transition: all 0.3s ease;
        }

nav ul li a:hover {
            background-color: transparent; /* fondo transparente */
            color: #ffcc00; /* color llamativo al hacer hover */
            border: 1px solid #ffcc00;
        }
.logo {
    height: 110px;
    width: 150px;
}
.contenido {
            max-width: 800px;
            margin: auto;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.contenido p {
            text-align: justify;
            margin-bottom: 8px;
        }

.contenido strong {
            font-size: 1.2em;
        }
.catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 250px;
    padding: 1rem;
    text-align: center;
    background: #e2e0e0;
    color:black;
}
.card img {
    width: 250px;
    height: 250px;
    border-radius: 6px;
}
.card i{
    color:black;
}
.card button {
    background-color: #f70505;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.card button:hover {
    background-color: #f70505;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.catalog {
    padding: 20px;
    text-align: center;
}
.catalog img {
    width:380px;
    height:350px;
    border-radius: 4px;
}
.catalog p{
    color:black;
}
.catalog .card h4{
    color:black;
}
.info-item {
      display: flex;
      align-items: center;
      padding: 10px 0;
      margin-left:15%;
      border-bottom: 1px solid #ddd;
      text-align: center;
    }
.info-item i {
      color: #01152b;
      margin-right: 10px;
      width: 50px;
      text-align: center;
    }
.info-text {
      font-size: 16px;
      color:black;
      text-align: center;
    }
.info-title {
      font-weight: bold;
      color:rgb(247, 4, 4);
      text-align: center;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    margin: 0 auto;
}
form input, form textarea {
    padding: 10px;
    border: 1px solid #f70505;
}
form button {
    background-color: #01052b;
    color: white;
    padding: 10px;
    border: none;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
}
footer {
    background-color:#f70505;
    color: white;
    text-align: center;
    padding: 10px;
}
