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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
html, body {
    overflow-x: hidden;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: #333;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #333;
    background: none;
    border: none;
}

.hero {
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero .cta-btn {
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.productos {
    padding: 40px 0px;
    text-align: center;
}

.productos-lista {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.producto {
    background-color: #f9f9f9;
    padding: 20px;
    width: 250px;
    margin: 10px;
    text-align: center;
    border-radius: 8px;
}

.producto img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.btn-get-info{
    background: #fff;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 10px;
    border: 1px solid gray;
    font-weight: 600;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

.banner-description, .banner-heading{
    color: #fff;
}

.banner-heading{
    text-align: center;
    padding-bottom: 10px;
    font-size: 35px;
    text-transform: uppercase;
}

.banner-description{
    font-size: 16px;
}

.banner-button{
    background: #232323;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 50px;
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 15px;
}

.content-box-absolute {
    margin-top: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 60%;
    z-index: 1;
    padding: 25px 25px 30px;
    transform: translateY(-47%);
    max-width: 100%;
    width: 475px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* logo whatsapp chat */

/* Estilo para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;       /* Ajusta la distancia desde la parte inferior */
    right: 20px;        /* Ajusta la distancia desde la parte derecha */
    background-color: #25D366; /* Color de fondo de WhatsApp */
    border-radius: 50%;
    padding: 5px 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Asegura que el icono esté por encima de otros elementos */
}

.whatsapp-float img {
    padding-top: 6px;
    width: 50px;
    height: 51px;
    border-radius: 50%;
    object-fit: cover;
}

/* Efecto al pasar el mouse por encima */
.whatsapp-float:hover {
    transform: scale(1.1);  /* Efecto de zoom al pasar el mouse */
    transition: transform 0.3s;
}
/* fin logo chat */

/* codigo marcas */
.marcas {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.marcas h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #232323;
}

.marcas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding-bottom: 50px;
}

.marca {
    width: 150px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.marca.visible {
    opacity: 1;
    transform: translateY(0);
}

.marca img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.marca p {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
section:nth-of-type(even) {
    background-color: #eef2f7; /* alternancia */
}
.marcas.designer{
    background-color: #eef1f1; /* alternancia */
}

.main-section{
    background-image: url("https://cdn.wallpapersafari.com/10/67/aXhmCM.jpg");
    background-size: cover;    /* La imagen cubre todo el contenedor */
    background-position: center; /* Centrada */
    background-repeat: no-repeat;
    width: 100%;
    min-height: 520px;
}

@media (max-width: 768px) {
    .content-box-absolute {
        top: 32%;
        left: 0%;
    }
    .navbar ul {
        display: none;
        width: 100%;
        text-align: center;
        background-color: #fff;
    }
    .navbar ul li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .navbar.active ul {
        display: block;
        text-align: start;
    }
    
    .banner-description{
        font-size: 15px;
        line-height: 22px;
    }

    .navbar.active .logo{
        display: none;
    }
    .navbar .logo{
        display: block;
    }

    .navbar.active .menu-toggle{
        position: absolute;
        top: 0;
        right: 15px;
        content: 'X';
    }
    .producto {
        width: 100%;
    }
    .producto img {
        height: auto;
    }
}

/* Banner Styles */
.banner-item-wrapper {
    position: relative;
}

.image-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.image-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.image-link.image-circle {
    border-radius: 50%;
}

.image-box-mobile .image-link {
    display: none;
}

.image-box-mobile .image-link + .image-link {
    display: block;
}

@media (min-width: 551px) {
    .image-box-mobile .image-link {
        display: block;
    }

    .image-box-mobile .image-link + .image-link {
        display: none;
    }

    .banner-item-wrapper:hover .content-box-absolute {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .banner-item-wrapper .content-box-absolute .banner-button:first-child {
        margin-right: 15px;
    }

    .banner-item-wrapper .content-box-absolute .banner-button:last-child {
        margin-left: 15px;
    }
}

@media (min-width: 1200px) {
    .content-box-left {
        left: calc((100% - 1170px)/ 2);
    }

    .content-box-right {
        right: calc((100% - 1170px)/ 2);
        left: auto;
    }

    .content-box-absolute.align-items-top {
        padding-top: 55px;
    }

    .content-box-absolute.align-items-bottom {
        padding-bottom: 70px;
    }

    .parallax-image {
        height: 860px;
    }
}


/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.contacto {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.contacto-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contacto h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
}

.contacto p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.contacto-form .form-group {
    margin-bottom: 20px;
}

.contacto-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.contacto-form input, .contacto-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contacto-form button {
    background-color: #232323;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.contacto-form button:hover {
    background-color: #f39c12;
}

.contacto-info {
    margin-top: 40px;
    text-align: left;
}

.contacto-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contacto-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f4f4f4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

/* decants */

.decants-section, .body-decants{
    background-color: #eef1f1;
}

.wrapper-decants{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-block: 20px;
}
.item-decant{
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.item-decant > img{
    display: block;
    width: 300px;
    height: auto;
}

.item-decant-description{
    text-align: center;
}

.item-decant-description > h3{
    color: #055888;
}

.item-decant-description p span{
    color: #070707;
    font-weight: bold;
}
.decants-section{
    margin-inline: 15px
}

@media screen and (min-width: 768px) {
    .decants-section{
        margin-inline: 5px
    }
    .wrapper-decants {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
        gap: 5px;
        justify-items: center;
        align-items: unset;
    }

    .item-decant > img{
        width: 314px;
    }
}