html {
    scroll-behavior: smooth;
}
.locations-section {
            padding: 4rem 0;
            overflow: hidden;
            margin-top: 6rem;
        }

        h5{
            text-align: center;
            font-size: 1.5rem;
            color: #ffffff;
            font-family:'shippori antique b1', sans-serif;  
        }

        .trabajo{
            font-size: 2rem;
            text-align: center;
            color: #ffffff;
            font-family:'shippori antique b1', sans-serif;  
        }
        

        .infinite-wrapper {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            /* Máscara para suavizar bordes */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            cursor: grab; /* Manito para agarrar */
        }

        .infinite-wrapper:active {
            cursor: grabbing;
        }

        .infinite-track {
            display: flex;
            width: max-content;
            /* Importante: will-change avisa al navegador que esto se va a mover mucho */
            will-change: transform; 
            gap: 2rem; /* Espacio entre tarjetas */
            padding: 1rem 0;
            
        }

        .location-card {
            background: linear-gradient(to bottom, #ffffff, #797979);
            border-radius: 20px;
            padding: 1.5rem 2rem;
            min-width: 180px;
            text-align: center;
            cursor: pointer;
            user-select: none;
            -webkit-user-drag: none;
        }

        .location-icon { 
            font-size: 1.5rem; margin-bottom: 0.5rem; 
        }

        .location-card h3 { font-family:'shippori antique b1', sans-serif;  
        font-size: 1.2rem;
        margin: 0; 
        color: #000000; 
    }
        .location-card span { font-family: 'shippori antique b1', sans-serif; 
        font-size: 0.8rem; 
        color: #000000b7; 
        }

body {
    background-color: rgb(31, 31, 32);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(31, 31, 32, 0.85);
    backdrop-filter: blur(10px);
}

main {
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 0;
    padding: 0px;
    z-index: 10;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 50px;
    border: 2px #C45D00 solid;
    padding: 8px 20px;
    border-radius: 50px;
    width: 60%;
    max-width: 800px;
    box-shadow: 0px 5px 15px black;
    margin: 0 auto;
    background-color: #1F1F20; 
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    top: 15px;
    right: 20px;
    z-index: 15;
    position: fixed;
}

.hamburger-menu .bar {
    width: 25px;
    height: 4px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}


.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(17px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar li a {
    color: rgb(185, 182, 182);
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s ease;
    font-weight: 700;
    font-size: 1.1em;
    padding: 5px 0;
}

.navbar li{
    list-style: none;
    align-self: center;
}

.navbar li a:hover{
    color:white;
}

/* Sección de Hero */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    height: 70vh;
    text-align: center;
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 20%,
        rgba(0,0,0,0.8) 100%
    ), url('assets/images/ImagenHero.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    color: #fff;
}

span{
    color: rgb(247, 247, 247);
    font-weight: 700;
    font-style:italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.7em;
}

.navbar .logo {
    width: 30px;
}

.Sl {
    font-family: 'Cal Sans', sans-serif;
    font-style: italic;
    font-size: clamp(3rem, 8vw, 9rem);
    letter-spacing: 6px;
    margin: 0;
    color: #EEEEEE;
    text-transform: uppercase;
    line-height: 0.7em;
    animation: fadeBlur 1.2s ease-out;
    position: relative;
}

.Sl::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, hsl(36, 49%, 72%));
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 0.8s forwards;
}

.Sl::before {
    content: "";
    position: absolute;
    bottom: -5vw; 
    left: calc(50% + 15vw); 
    width: 10vw; 
    height: 10vw; 
    max-width: 80px; 
    max-height: 80px;
    min-width: 40px; 
    min-height: 40px; 
    background-image: url('assets/images/truck-svgrepo-com (2).svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-15vw); 
    animation: truck-appear 0.9s ease 1.15s forwards;
}

.Sl span {
    display: block;
    font-size: 0.48em;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ca8536;
    margin-top: 0.2em;
    font-style: italic;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    animation: fadeSlide 1.2s ease-out;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    color: whitesmoke;
}

.main__action {
    display: none;
    margin: 0 auto;
}

.main__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.main__scroll-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    scale: 0.8;
}

.main__scroll-box svg {
    width: 24px;
    height: 24px;
}

.main__scroll-text {
    color: rgba(255, 255, 255, 0.637);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sección de quienes somos */
.container-quienes-somos{
    height: auto;
}

.quienes-somos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 60px auto 40px auto;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    background: linear-gradient(90deg,#F2F1EE 40%, #ffffff6e 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 4px 10px black;
}

.ft-QS{
    padding: 30px;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
}

.quienes-somos-imagen-container {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quienes-somos-section-container {
    flex: 1 1 500px;
    padding: 20px;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
    color:  rgb(32, 32, 39);
    font-weight: 600;
}

.quienes-somos-titulo-container h2 {
    color: #e77c1f;
    font-family:  'Overpass', sans-serif;
    font-weight: 800;
    font-size: 2em;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5); 
    text-transform: uppercase;
}

.quienes-somos p {
    font-family: sans-serif;
    text-wrap: pretty;
}

/* línea decorativa debajo */
.quienes-somos-titulo-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 9em; 
    height: 4px;
    background-color: #202d3a; 
    border-radius: 2px;
}

/* --- SECCIÓN DE PRODUCTOS  --- */
.productos {
    padding: 10px 20px;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    margin: 4rem 0;
    background: transparent; 
    box-shadow: none;
    padding: 0;
}


.titulos {
    font-family: 'Shippori Antique B1', 'Cal Sans', sans-serif;
    letter-spacing: 0.1rem;
}

/* Creamos las líneas con pseudo-elementos en el contenedor */
.title-container::before,
.title-container::after {
    content: "";
    display: block;
    height: 2px;
    width: 10rem; /* Largo de la línea */
    background: linear-gradient(90deg, transparent, #f28305); /* Línea difuminada */
}

/* Invertimos la dirección del degradado para la línea derecha */
.title-container::after {
    background: linear-gradient(90deg, #f28305, transparent);
}

.title-container h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, #2c2c2e 0%, #232325 100%);
    border-radius: 22px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-card:hover {
    box-shadow: 0px 0px 15px rgba(236, 113, 31, 0.7);
}

.product-image-container {
    flex-shrink: 0;
    width: 250px;
    background: linear-gradient(to bottom, #ffffff, #9c9c9c);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #444;
}

/* Estilos para la información de disponibilidad */
.availability-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.availability-info span {
    font-size: 1em;
    font-weight: 600;
    color: #272727;
}

.availability-logo {
    width: 4.5rem;
    height: 4.5rem;
}

.product-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: auto;
    transition: transform 0.3s ease-in-out;
}

.product-card img:hover {
    transform: scale(1.07);
}

.product-info-container {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: left;
}

.product-info-container h3 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.9rem; 
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.product-info-container .description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem; 
    color: #b9b6b6;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.product-details {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #444;
    width: 100%;
}

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

.product-brand, .product-flavor, .product-presentation {
    flex: 1;
}

.product-pills h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #C45D00;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pill-item {
    background-color: #3a3a3e;
    color: #e0e0e0;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #555;
}

p.description {
    text-wrap: pretty;
}


/* Contacto */

:root {
    --color-primary: #dd830d;
    --color-icon-bg: #e08d20;
    --color-text-dark: #333333;
    --color-text-gray: #666666;
    --color-bg-overlay: rgba(218, 162, 51, 0.4);
    
    /* Variables de espaciado base para mantener consistencia */
    --spacing-sm: 1rem;     
    --spacing-md: 2rem;     
    --spacing-lg: 3.5rem;  
}

/* --- Configuración de la Sección General ---  */

.contacto-section {
    padding: 5vh 5%; 
    background: linear-gradient(165deg, #75623d, #07152e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 40vh; 
    border-radius: 1.5rem;
}

.title-container h2 {
    color: white;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    text-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.2);
}

/* --- Contenedor Grid para las Tarjetas --- */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); 
    gap: 3rem;
    width: 100%;
    max-width: 85rem; 
    margin-bottom: var(--spacing-md);
}

/* --- Estilo de cada Tarjeta (Card) --- */
.card {
    background-color: #ffffff;
    border-radius: 0.75rem; 
    padding: 2rem 1.5rem;   
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    height: 80%;
}

.card:hover {
    transform: translateY(-0.5rem);
}


/* --- Estilo de los Iconos --- */
.icon-box {
    background-color: var(--color-icon-bg);
    width: 3.5rem;  
    height: 3.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.icon-box svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke: white;
    stroke-width: 2;
}

.card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-wrap: pretty;
}

.card p {
    font-size: 1rem; 
    color: var(--color-text-gray);
    line-height: 1.4;
    margin: 0;
    padding-bottom: 0.5rem; 
}

/*  Sección Botón WhatsApp Inferior  */
.cta-container {
    text-align: center;
    width: 100%;
    padding: 0 1rem; 
}

.cta-text {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-contacto-link {
    text-decoration: none;
    display: inline-block;
}

.btn-contacto {
    background-color: #25b65f;
    color: white;
    border: none;
    padding: 1rem 2.5rem; 
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0.25rem 0.6rem rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.btn-contacto span {
    font-size: 1rem;
}

.btn-contacto:hover {
    background-color: #208b4b;
    transform: scale(1.05);
}

.wsp-icon {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}

.cta-container {
    padding: 0 2rem;
}

.cta-text {
    font-size: 1.5rem; 
    margin-bottom: 1.5rem;
}


.wsp-icon {
    width: 1.8rem; 
    height: 1.8rem;
}

.contacto-section {
    text-wrap: pretty;
}

/* footer */
footer {
    background-color: #1F1F20;
    padding: 20px;
    width: 100%;
    box-shadow: 0px -1px 8px black;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #a0a0a0;
    font-size: 0.9em;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.designed-by {
    color: #333;
    font-size: 0.8em;
    margin: 0;
    text-align: right;
    transition: color 0.3s ease;
    cursor: pointer;
}

.designed-by:hover {
    color: #777;
}

#designer-email {
    font-size: 0;
    text-decoration: none;
    color: #333;
    transition: font-size 0.4s ease, color 0.4s ease;
}

#designer-email.visible {
    font-size: 1em;
    color: #818181; 
}

/* Animaciones */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes underlineGrow {
    to { width: 60%; }
}

@keyframes truck-appear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flotar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ------------------- */
/* Media Queries */
/* ------------------- */

/* Desktops grandes (a partir de 1440px) */
@media (min-width: 1440px) {
    .nav-links {
        width: 70%;
        gap: 3.5vw;
    }

    .quienes-somos {
        flex-direction: row;
        align-items: center;
        padding: 2em;
    }

    .quienes-somos-section-container {
        text-align: center;
        align-items: center;
        padding: 2em;
    }

    .ft-QS {
        max-height: 50vh;
        transform: scale(1.15);
    }

    .Sl::before {
        bottom: -2vw;
        left: calc(50% + 7vw);
        width: 3vw;
        height: 3vw;
    }


}

/* Laptops (a partir de 1180px) */
@media (min-width: 1180px) and (max-width: 1439px) {
    .nav-links {
        width: 80%;
        gap: 4vw;
    }

    .quienes-somos {
        flex-direction: row;
        align-items: center
    }

    .quienes-somos-section-container {
        text-align: center;
        align-items: center;
        padding: 40px 20px;
    }

    .ft-QS {
        max-height: 40vh;
        transform: scale(1.5);
        padding: 1rem;
    }

    .Sl::before {
        bottom: -3vw;
        left: calc(50% + 7vw);
        width: 4vw;
        height: 4vw;
    }

}

@media screen and (min-width: 769px) and (max-width: 1179px) {
    .hero {
        height: 120vw; 
    }

    .Sl {
        font-size: clamp(4rem, 12vw, 7rem);
    }

    .Sl span {
        font-size: 0.55em;
    }

    .Sl::before {
        left: calc(50% + 14vw); 
        width: 70px;
        height: 70px;
        bottom: -6vw;
    }

    .nav-links {
        width: 90%; 
        gap: 20px; 
    }

    .navbar li a {
        font-size: 1em; 
    }

    .quienes-somos-section-container {
        text-align: center;
        align-items: center;
        padding: 40px 20px;
    }
    .cta-text {
    font-size: 1.2rem;
    }

}

.btn-contacto {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* TABLETS Y MÓVILES  */
@media (max-width: 768px) {
    /* Ajustes Menú */
    .nav-links {
        font-size: small;
        position: fixed;
        left: -100%;
        top: 0;
        gap: 20px; 
        flex-direction: column;
        background-color: #1F1F20; 
        width: 20%;
        height: 30vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center; 
        max-width: none;    
        border: 2px #E27B21 solid;       
        border-radius: 20px;   
        box-shadow:#232325 ;          
        z-index: 14;        
        margin-left: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger-menu {
        display: flex;
        z-index: 15; 
    }

    .navbar li a {
        font-size: 1.5em; 
    }

    /* Ajustes Quienes Somos y Producto (Sin cambios) */
    .quienes-somos-imagen-container {
        margin-left: 0; 
        margin-bottom: 0;
        padding: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .quienes-somos-section-container {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .ft-QS {
        height: auto;
        width: 80%; 
        padding-bottom: 2em;
        object-fit: contain;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-image-container img {
        max-width: 50%;
    }

    .availability-info, span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: x-large;
    }

    .availability-logo {
        width: 6rem;
        height: 6rem;
    }

    .product-image-container {
        width: auto;
        border-right: none;
        border-bottom: 1px solid #444;
        box-sizing: border-box;
    }

    .product-info-container {
        padding: 20px;
        align-items: center;
    }

    .product-info-container h3 {
        font-size: 1.6rem;
    }

    .product-details {
        justify-content: center;
        padding-top: 15px;
    }

    
    .contacto-section {
        padding: 4rem 1.5rem; 
        min-height: auto;
    }

.cards-container {
        display: flex;            
        flex-direction: column;    
        gap: 3rem;                
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;   
    }

    .card {
        align-items: center; 
        text-align: center;
        padding: 2.5rem 1.5rem;
        width: 100%;               
        box-sizing: border-box;   
        height: auto;              
        margin-bottom: 0;         
    }

    /* Botón ancho completo para facilitar el click */
    .btn-contacto {
        width: 100%; 
        justify-content: center;
        padding: 1.2rem;
    }
    
    .cta-container {
        width: 100%;
        max-width: 25rem; 
        margin: 0 auto; /* Centrado */
    }

    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .copyright {
        text-align: center;
    }

    .Sl {
        margin-top: 1.3em;
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .Sl span {
        font-size: 0.6em;
        margin-top: 0.2em;
    }

    .hero {
        height: 150vw;
    }

    .Sl::before {
        bottom: -4vw;
        left: calc(50% + 16vw);
        width: 5vw;
        height: 5vw;
    }

    .cta-container {
    width: 100%;
    padding: 0 1.5rem; 
    box-sizing: border-box;
    max-width: 500px; 
    margin: 0 auto; 
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

/* Importante: El enlace debe ocupar todo el ancho para que el botón pueda expandirse */
.btn-contacto-link {
    width: 100%;
    display: block; 
}

.btn-contacto {
    scale: 0.8;
    width: 100%;             
    justify-content: center; 
    padding: 1.2rem;         
    font-size: 1rem;
}

.btn-contacto .wsp-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding-left: 0.5rem;
}

.main__action {
    display: block;
    margin-top: 8rem;
}

}

/* Mobile devices (hasta 480px) */
@media (max-width: 480px) {
    header {
        padding: 5px 0;
    }

    .Sl {
        font-size: clamp(3rem, 19vw, 6rem);
    }

    .hero {
        height: 80vh;
        text-shadow: 0 3px 8px rgba(0,0,0,0.3);
    }

    .nav-links{
        height: 32vh;
        font-size: x-small;
    }

    .nav-links.active{
        border: 1px #bd661a solid;
        margin-left: 0.5rem;
    }

    .Sl span {
        margin-top: 0.2em; 
    }

    .Sl::before {
        bottom: -8vw;
        left: calc(50% + 23vw);
        width: 10vw;
        height: 10vw;
    }

    .quienes-somos-section-container {
        font-size: 1em;
    }

    .quienes-somos-titulo-container h2 {
        font-size: 1.8em;
    }

    .product-image-container img {
        max-width: 70%;
    }

    .product-image-container {
        height: auto; 
    }

    .product-info-container h3 {
        font-size: 1.4rem;
    }

    .availability-info span {
        font-size: medium;
        text-wrap: pretty;
    }

    .availability-logo {
        width: 4.2rem;
        height: 4.2rem;
    }

    .contacto-section {
        padding: 3rem 1rem; 
    }

    .cards-container {
        gap: 1.5rem; 
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .main__scroll {
        margin-bottom: 3.5rem;
    }
}

/* Small mobile devices (hasta 320px) */
@media (max-width: 320px) {
    .Sl {
        font-size: clamp(3rem, 17vw, 4rem);
    }

    .hero {
        height: 150vw;
    }

    .nav-links{
        height: 25vh;
    }

    .quienes-somos-titulo-container h2 {
        font-size: 1.5em;
    }

    .product-info-container h3 {
        font-size: 1.2rem;
    }

    .Sl::before {
        bottom: -10vw;
        left: calc(50% + 19vw);
        width: 10vw;
        height: 10vw;
    }

    .cta-container {
        padding: 0 0.5rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .btn-contacto {
        padding: 0.8rem 0.5rem; 
        font-size: 0.9rem;      
        gap: 0.4rem;
        width: 100%;
    }

    .wsp-icon {
        width: 1.1rem;
        height: 1.1rem;
    }

    .title-container h2 {
        font-size: 1.8rem;
    }
}