body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

.header {
    background: white;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
   padding: auto;
}


.logo { height: 70px; 
       
}
.phone {
    margin-left: 40px;
}

.phone {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 10px; /* espacio entre icono y número */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.whatsapp-icon {
    color: #25D366; /* verde WhatsApp */
    font-size: 26px; /* tamaño más grande */
}


.hero {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 30px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.img-full {
    width: 100%;
}

.gallery img {
    width: 100%;
    border-radius: 5px;
}

.cta {
    text-align: center;
    padding: 40px;
}

.footer {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    padding: 60px 20px;
}

.footer-box {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.icon{
      height: 5px;
}

.lista{
    list-style: none;
}
.center{
   display: center;
}

.productos {
    padding: 60px 0;
    background: #f5f7fa;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card i {
    font-size: 40px;
    color: #1e3a5f;
    background: #eef1f5;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card p {
    font-size: 18px;
    margin: 0;
}

/* HOVER EFECTO */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
@media (max-width: 992px) {
    .grid-productos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid-productos {
        grid-template-columns: 1fr;
    }
}
.card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #eef1f5;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card:hover img {
    transform: scale(1.1);
    transition: 0.3s;
}