body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff5f5; 
}
.menu-fijo {
    position: fixed;
    width: 100%;
    background-color: #ff6666; /* Rojo claro cremoso */
    color: #fff;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leyenda {
    background-color: #e43737; 
    text-align: center;
    padding: 5px 0;
    border-radius: 35px;
    animation: scroll-right 15s linear infinite;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.leyenda p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    display: inline-block;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: center;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 10px;
}

.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.menu li a:hover {
    color: #ffe6e6; /* Color de hover */
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-icons .icon {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

.social-icons .icon:hover {
    transform: scale(1.2);
}

.social-icons .google {
    background-image: url('https://cdn-icons-png.flaticon.com/512/300/300221.png'); /* &#1043;&#1036;cono de Google Business */
}

.social-icons .facebook {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png');
}

.social-icons .instagram {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733558.png');
}

.social-icons .whatsapp {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733585.png');
}
/*
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
}
*/
@keyframes scroll-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero {
    margin-top: 200px; /* Altura del header incluyendo leyenda */
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.footer {
    background-color: #ff6666; /* Rojo claro cremoso */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 14px;
}
/*
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .logo, .nav-container, .social-icons {
        display: none;
    }

    .menu {
        flex-direction: column;
        display: none; /* Oculto por defecto en m&#1043;&#1110;viles */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 102, 102, 0.9); /* Rojo claro cremoso con transparencia */
        padding: 10px 0;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex; /* Mostrar el &#1043;­cono de men&#1043;&#1108; hamburguesa en m&#1043;&#1110;viles */
        justify-content: center;
    }

    .menu-active .menu {
        display: flex; /* Mostrar el men&#1043;&#1108; cuando est&#1043;&#1038; activo en m&#1043;&#1110;viles */
    }

    .menu-active .logo, .menu-active .nav-container, .menu-active .social-icons {
        display: block;
    }

    .menu-active .logo img {
        margin: 10px auto;
    }

    .menu-active .social-icons {
        flex-direction: column;
        align-items: center;
    }
  }*/
