/* Variables de color */
:root{
    --primary-color: #6f4e37;
    --secondary-color: #d9c8b4;
    --background-color: #f8f8f8;
    --text-color: #333;
    --white-color: #fff;
}

#Aviso{
    background-color:black;
}

#bodyIndex{
    background-color:#b4b4b4;
}

.specialty {
    /*border: 2px solid #ff5733; Cambia #ff5733 por el color que quieras */
    border-radius: 10px; /* Opcional: esquinas redondeadas */
    padding: 10px; /* Opcional: espacio interno */
    transition: border 0.3s; /* Opcional: efecto suave al cambiar */
}
    .specialty:hover {
        box-shadow: 10px 10px 8px rgba(255, 81, 152, 0.5);
        transition: box-shadow 0.3s;
    }

.container .subir{
    display:none;
}

.container .arriba{
    color:#FF5198;
    border: 2px solid #FF5198;
    background-color:#792A4A;
    padding: 10px;
    width:50px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    position:fixed;
    bottom:15px;
    right:30px;
    transition:.5s all ease;
    animation: subir 1s infinite alternate;
    cursor:pointer;
}
    .container .arriba:hover {
        color: #792A4A;
        border: 2px solid #792A4A;
        background-color: #FF5198;
    }
@keyframes subir{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-15px)
    }
}
/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: #792A4A;
    line-height: 1.6;
}

#btnbuscar {
    background-color: #792A4A;
    color: #FF5198;
    border-color: #FF5198;
}

#btnbuscar:hover {
    background-color: #FF5198;
    color: #792A4A;
    border-color:#792A4A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/*header*/
/*header {
    background-color: #282726;
}*/
#ulmas a {
    color: #792A4A
}
#navlinka {
    color: #fff; /* el color que quieras */
}
#navlinka:hover {
    color: #FF5198; /* el color que quieras */
}
#ulmas a:hover {
    color: #FF5198;
    background-color:#792A4A;
}

.listitem {
    color: #792A4A;
}
.nav-link .nav-link {
    color: white;
}

    .nav-link:hover {
        color: #FF5198;
    }
/* Encabezado */
.navbar {
    background-color: #792A4A;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
    .navbar a {
        color: white;
    }
    .navbar .container {
        
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    /* color: var(--primary-color); */
    color: #C79C60;
}

    .logo img {
        height: 40px;
        margin-right: 10px;
    }

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    .nav-links li {
        margin-left: 2rem;
    }

    .nav-links a {
        /* color: var(--text-color); */
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            /* color: var(--primary-color); */
            color: #C79C60;
        }

.hero {
    /* background-image: url('hero-bg.jpg'); */
    background-color: #000000;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 4rem 0;
    margin-top: 66px;
}

    .hero h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    border-color:#792A4A;
    font-weight: 500;
    background-color:#792A4A ;
}


.btn-primary:hover {
    background-color: #FF5198;
    border-color: #FF5198;
}

#buttonIndex:hover {
    background-color: #FF5198;
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-secondary:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

/* Sección Acerca de Nosotros */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
}

.about-us-content {
    flex: 1;
    margin-right: 2rem;
}

.about-us-image {
    flex: 1;
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#carrito #btnVaciar {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    border-color: #333;
    font-weight: 500;
    background-color: #333;
    color:white;
}

/* Especialidades */
.specialties {
    padding: 4rem 0;
    text-align: center;
}

    .specialties h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .specialty:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .specialty img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .specialty h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .specialty span {
        display: block;
        margin-top: 0.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

/* Testimonios */
.testimonials {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

    .testimonials h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

.testimonial {
    padding: 1rem;
    margin-bottom: 1rem;
}

    .testimonial p {
        font-style: italic;
        margin-bottom: 0.5rem;
    }

    .testimonial .author {
        font-weight: 700;
        color: var(--primary-color);
    }

/* Pie de página */
footer {
    background-color: #792A4A;
    color: #FF5198;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        color: var(--white-color);
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #FF5198;
    }

.social-links {
    display: flex;
    align-items: center;
}

    .social-links li {
        margin-right: 1rem;
    }

    .social-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: var(--white-color);
        color: var(--primary-color);
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    /*
        .social-links a:hover {
            background-color: var(--secondary-color);
            color: #fd3d3d;
        }

*/
/*Cambia los colores de los logos de redes*/
#facebook:hover {
    background-color: var(--secondary-color);
    color: #2e1ae7;
}

#twiter:hover {
    background-color: var(--secondary-color);
    color: #1abee7;
}

#instagram:hover {
    background-color: var(--secondary-color);
    color: #e71ac5;
}

#youtube:hover {
    background-color: var(--secondary-color);
    color: #ff0000;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

#map {
    height: 500px;
    width: 100%;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 1rem;
        width: 100%;
        flex-direction: column;
    }

        .nav-links li {
            margin: 0.5rem 0;
        }

    .hero {
        padding: 3rem 0;
    }

        .hero h2 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .about-us {
        flex-direction: column;
    }

    .about-us-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}
