﻿body{
    font-family: "Montserrat", sans-serif;
}

.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
}
.chat img{
    width: 100%;
}

.cabecera{
    background: black;
    color: white;
}

.logotipo img{
    width: 80%;
}


nav a{
    color: #e7c77a;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 33.33%;
    float: left;
}
.menu{
    text-align: center;
}


.carrito{
    text-align: center;
    font-size: 22px;
}


.datos{
    text-align: center;
}
.datos img{
    width: 30px;
}
.datos strong{
    font-size: 25px;
}


.efecto{
    background: url(../images//fondo-efecto.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 400px;
    padding-bottom: 100px;
}

.titulo-efecto{
    background: rgba(0, 0, 0, 0.8);
    width: 50%;
    color: white;
    font-weight: bold;
    font-size: 32px;
    display: inline-block;
    padding: 5px 20px;
}


.ultimos{
    padding-top: 50px;
    padding-bottom: 50px;
}


.titulo{
    text-align: center;
    font-size: 33px;
    color: #e7c77a;
    font-weight: bold;
    margin-bottom: 30px;
}


.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 23%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card img{
    width: 100%;
    height: 200px;

    object-fit: cover;
}

.product-title {
    min-height: 53px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: #27ae60;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #2980b9;
}


.img1{
    background: url(../images/1.jpg) no-repeat center center;
    background-size: cover;
}
.img2{
    background: url(../images/2.jpg) no-repeat center center;
    background-size: cover;
}



.texto{
    background: black;
    color: white;
    font-size: 19px;
    padding: 100px 20px;
}
.texto strong{
    font-size: 33px;
    color: #e7c77a;
}

footer {
    background-color: #2c3e50;
    background: #ddd;
    /* color: #ecf0f1; */
    padding: 40px 20px;
    margin-top: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    border-bottom: 2px solid #e7c77a;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    color: black;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #ffffff;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #ecf0f1;
    color: black;
}

.social-icons a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #95a5a6;
}

@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){
    .logotipo{
        text-align: center;
    }
    .titulo-efecto{
        width: 100%;
    }
}

@media screen and (max-width:768px){
    .product-card {
        width: 47%;
        margin-bottom: 20px;
    }
    .img{
        height: 300px;
    }
}

@media screen and (max-width:576px){
    
}