body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
/*--------------------------wsp button*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}
.whatsapp-button .wsp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
.whatsapp-button .wsp:hover {
    transform: scale(1.1);
}
/*---------------------Encabezado */
.header {
    background-color: #f5f5dc;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 3rem 0 0;
}
.logo .img {
    width: 40%;
    max-width: 120px;
    margin-left: auto;
}
.title {
    font-size: 5rem;
    color: #333333;
    margin: 0;
    flex: 2;
    text-align: justify;
    font-family: "playfair Display",serif;
}
/*---------------------------------------Menú de navegación */
.nav {
    background-color: #ffffff;
    padding: 30px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 1px;
    z-index: 30;
}
.nav__menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.nav__item {
    margin: 0 5px;
}
.nav__link {
    font-size: 1.3rem;
    color: #333333;
    text-decoration: none;
    padding: 8px 10px;
    transition: 0.3s ease, color 0.3s ease;
}
.nav__link:hover {
    background-color: #666;
    color: #ffffff;
    border-radius: 5px;
}
/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .header {
        flex-direction:row;
        align-items: center;
        padding: 20px;
    }
    .logo {
        margin-bottom: 10px;
        justify-content: center;
    }
    .title {
        font-size: 2.5rem;
        text-align: center;
    }
    .nav__menu {
        flex-direction: row;
        align-items: center;
    }
    .nav__item {
        margin: 10px 0;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    .nav__link {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
}
/*-----------------------------------CONTENT------------------------*/
/* Estilo general para la sección */
.about {
    background-color: #f5f5dc;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}
.img__content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}
/* Estilo para el contenedor del título */
.about__content {
    width: 100%;
    margin-bottom: 15px;
}
/* Estilo para el título */
.about__title {
    font-size: 2.5rem; 
    font-weight: 700;
    color: #333; 
    margin-bottom: 10px;
}
.about__text {
    width: 100%;
    max-width: 800px;
    margin: 0;
}
.text {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    text-align: justify; 
    margin-bottom: 20px;
}
/*-------------------------------------------RESPONSIVE*/
@media screen and (max-width: 1024px) {
    .about {
        flex-direction: column;
        align-items: flex-start;
    }
    .img__content {
        width: 100%;
        margin-bottom: 20px;
    }
    .img {
        max-width: 90%;
    }
    .about__content {
        width: 100%;
    }
    .about__title {
        font-size: 2rem;
    }
    .text {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 768px) {
    .about__title {
        font-size: 1.8rem;
    }
    .text {
        font-size: 0.85rem;
    }
}
@media screen and (max-width: 480px) {
    .about__title {
        font-size: 1.5rem;
    }
    
    .text {
        font-size: 0.8rem;
    }
    .img {
        max-width: 100%;
    }
}
/*----FOOTER--------*/
.site-footer {
    background-color: #f5f5dc;
    padding: 20px 0;
    text-align: center;
    color: #333;
}
.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333333;
}
.social-links {
    margin-bottom: 15px;
}
.image{
    width: 30px;
    height: 30px;
}
.social-link {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #666;
}
.footer-address {
    font-size: 1rem;
    color: #666;
}
.footer-address .text__address {
    margin: 0;
}
.privacity {
    text-align: left;
}
.privacity__text .privacity__link{
    color: #666;
    text-decoration: none;
}
.footer-brand {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.brand-link {
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.brand-link:hover {
    color: #666666;
}
.contact__content {
    text-align: left;
}
.contact__title {
    color: #666;
    line-height: 25px;
    font-size: 1rem;
}