@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(
        90deg,
        rgba(241,237,220,1) 0%,
        rgba(255,255,253,1) 50%,
        rgba(252,246,232,1) 100%
    );
    padding: 70px 0;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 25px;
    color: #b1495c;
    text-transform: uppercase;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #111111;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #b1495c;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.submenu {
    position: relative;
}

.submenu #carrito {
    display: none;
}

.submenu:hover #carrito {
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #4e4b5075;
    padding: 20px;
    min-width: 400px;
} 

.table {
    width: 100%;
}

th, td {
    color: #ffffff;
}

.borrar {
    background-color: #b1495c;
    border-radius: 50%;
    padding: 5px 10px;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.header {
    width: 100%;
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-txt {
    flex-basis: 40%;
    text-align: center;
}

.header-txt h1 {
    font-size: 70px;
    line-height: 1;
    color: #181818;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.header-img {
    max-width: 100%;
    height: auto;
}


p {
    color: #4b4b4b;
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-1, .btn-3 {
    display: inline-block;
    padding: 10px 30px;
    color: #b1495c;
    border: 2px solid #b1495c;
    text-transform: capitalize;
    border-radius: 15px;
}

.btn-1:hover, .btn-3:hover {
    color: #ffffff;
    background-color: #b1495c;
}

.header-img {
    flex-basis: 60%;
}

.oferts {
    padding: 100px 0;
    text-align: center;
}

h2 {
    font-size: 40px;
    line-height: 1;
    color: #181818;
    margin-bottom: 10px;
}


.oferts-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ofert-1 {
    flex-basis: calc(30% - 30px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
    background-color: #f7fafa;
    border-radius: 10px;
}

.ofert-1 img {
    width: 130px;
    height: 170px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    line-height: 1;
    color: #181818;
    margin-bottom: 10px;
}

.product-txt p {
    margin-bottom: 10px;
}

.precio {
    color: #b1495c;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-3 {
    padding: 4px 20px;
}

.logan-1 {
    flex-basis: 40%;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.2)
    ),
    url(images/ch1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    border-radius: 10px;
}

.logan-1 h3 {
    font-size: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

.logan-1 p {
    font-size: 18px;
    text-transform: uppercase;
    color: #F7F7F7;
    margin-bottom: 20px;
}

.btn-2 {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.promotion {
    padding: 80px 0;
    background-color: #F7F7F7;
    text-align: center;
}

.promotion-content {
    display: flex;
}

.promotion-txt {
    flex-basis: 50%;
}

.promotion-img {
    flex-basis: 50%;
    text-align: center;
}

.promotion-img img {
    width: 250px;
}

.product {
    padding: 100px 0;
    text-align: center;
}

.product-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog {
    padding: 50px 0 100px 0;
    text-align: center;
}

.blog-content {
    display: flex;
    justify-content: space-between;
}

.blog-1 {
    flex-basis:  calc(33.3% - 30px);
    margin-top: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.blog-1 img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    /* border-radius: 15px; */
    display: block;
    margin-bottom: 20px;
}

.blog-txt {
    padding: 40px;
}

.btn-4 {
    display: inline-block;
    border: 1px solid #181818;
    padding: 8px 25px;
    font-size: 17px;
    text-transform: capitalize;
    color: #181818;
}

.footer {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 900px;
}

.link h3 {
    font-size: 17px;
    color: #181818;
    margin-bottom: 18px;
}

.link a {
    font-size: 17px;
    color: #181818;
    display: block;
    margin-bottom: 10px;
}

.link a:hover {
    color: #b1495c;
}

.total {
    margin-top: 20px;
    font-weight: bold;
    text-align: right;
    color: #ffffff;
}

.logo-redes {
    width: 28px;
    margin-left: none;
    transition: transform 0.3s ease;
}

.logo-redes:hover {
    transform: scale(1.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

.whatsapp-float img{
   width: 55px;
   cursor: pointer;
   box-shadow: 0 4px 10px rgba(0,0,0,0.3);
   border-radius: 50%;
}

.whatsapp-float .mensaje {
    display: none !important;
    background: white;
    color: black;
    padding: 8px 10px;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 14px;
}

.mensaje{
  background: white;
  color: black;
  padding: 8px 10px;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 14px;
  display: none;
}

.whatsapp-float:hover .mensaje {
    display: block !important;
    
}

footer {
    padding: 150px 0;
}

.footer-txt {
    text-align: center;
    color: #ccc;
    margin-top: 30px;
}

.ubicacion {
  text-align:center;
  padding:80px 20px;
  background:#ffffff;
}

.ubicacion h2 {
  margin-bottom:10px;
}

.ubicacion p {
  margin-bottom:30px;
  color: #181818;
}

.horarios {
    margin: 20px 0;
    color: #ccc;
    padding: 15px 0;
    
}

.horarios p{
    margin: 5px 0;
    color: #181818;
}



@media(max-width:991px) {

    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f2eae0;
        display: none;
        flex-direction: column;
        padding: 20px 0;
    }

    .menu .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .menu .navbar ul li {
        width: 90% !important;
        max-width: 300px;
        height: auto;
        margin: 10px 0;
        display: block;
    }

    #menu:checked ~ .navbar {
         display: block;
    }

    .logo {
        display: none;
    }

    .menu .navbar ul li a:hover {
        color: #b1495c;
    }

    .header {
        flex-direction: column;
        text-align: center;
        min-height: 0vh;
        padding: 100px 30px 50px 30px;
    }

    .header-img {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .header-img img {
        width: 90%;
        max-width: 350px;
        height: auto;
        position: static;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-txt {
        margin-bottom: 25px;
    }

    .oferts {
        padding: 30px;
    }

    .oferts-content {
        flex-direction: column;
    }

    .ofert-1 {
        margin-bottom: 30px;
    }

    .logan-1 {
        order: -2;
        margin-bottom: 30px;
    }

    .promotion {
        padding: 30px;
    }

    .promotion-content {
        flex-direction: column;
        text-align: center;
    }

    .promotion-txt {
        margin-bottom: 25px;
    }

    .promotion-img img {
        width: 200px;
    }

    .product {
        padding: 30px;
    }

    .product-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .blog {
        padding: 30px;
    }

    .blog-content {
        flex-direction: column;
    }

    .footer {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:767px) {
    .logan-1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}