* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.logo {
    margin-left: 15px;
    max-width: 150px; /* Ajusta este valor según el tamaño del logo */
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/*INICIO NUEVO MENU*/
header {
    background: #F02E7B;
    color: #fff;
    padding: 1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: #F02E7B;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

nav ul li {
    margin: 1rem 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
}

nav ul li a i {
    margin-right: 0.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

nav.open {
    transform: translateX(0);
}

/* Estilos para dispositivos medianos y grandes */
@media (min-width: 769px) {
    .menu-toggle, .menu-close {
        display: none;
    }
    nav {
        position: static;
        transform: translateX(0);
        width: auto;
        height: auto;
        flex-direction: row;
        justify-content: center;
        background: transparent;
    }
    nav ul {
        flex-direction: row;
        padding: 0;
    }
    nav ul li {
        margin: 0 1rem;
    }
    nav ul li a {
        font-size: 1rem;
    }
    nav ul li a i {
        display: none;
    }
}

/* Estilos para dispositivos pequeños */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .menu-close {
        display: block;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 1rem 0;
    }
}

/* FIN NUEVO MENU*/

section {
    padding: 2rem;
    text-align: center;
}

section:nth-of-type(even) {
    background: #f4f4f4;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label, form input, form textarea, form button {
    width: 80%;
    max-width: 500px;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

form button {
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #F02E7B;
    color: white;
}

.footer1 {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Espacio entre los iconos */
}

.social-icons a {
    color: white;
    font-size: 1.5rem; /* Tamaño de los iconos */
    text-decoration: none;
}

.responsive-image {
    max-width: 100%; /**/
    height: auto;
    display: block;
    margin: 1rem auto;
}

h2 {
    color: #F02E7B;
    font-size: x-large;
}

h1 {
    color: #79797d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

p {
    font-size: medium;
    text-align: justify;
}

.catalogo-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .catalogo-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 860px) {
    .catalogo-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.divCatalogo {
    background: #FEF0F3;
    padding: 2rem;
    border: 1px solid #FEF0F3;
    border-radius: 5px;
}

.divCatalogo h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.divCatalogo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.divCatalogo p {
    margin-bottom: 0.5rem;
}

#inicio {
    padding: 5rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text-content {
    margin-top: 1rem;
}

.responsive-image {
    max-width: 100%;  /**/
    height: auto;
    display: block;
}

/*Divs principales*/
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        text-align: left;
        align-items: stretch;
    }

    .responsive-image {
        max-width: 50%;
        margin-right: 1rem;
    }

    .text-content {
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid #FEF0F3;
        background-color: #FEF0F3;
        padding: 1rem;
        border-radius: 5px;
    }

    .text-content h2,
    .text-content p {
        margin: 0;
        padding: 0.5rem 0;
    }
}

/*Fin Divs principales*/
.whatsapp-contact {
    margin-top: 1rem;
    text-align: center;
}

.whatsapp-contact a {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

.whatsapp-contact a i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.direction-contact {
    margin-top: 1rem;
    text-align: center;
}

.direction-contact a {
    display: inline-flex;
    align-items: center;
    background: #F02E7B;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

.direction-contact a i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}
