@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Anton&family=Orbitron:wght@400..900&family=Russo+One&family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Anton&family=Gidugu&family=Orbitron:wght@400..900&family=Russo+One&family=Staatliches&display=swap');

*{
    margin: 0;
    padding: 0;
}

.container{
    overflow-x: hidden; /* Evita el desbordamiento horizontal */
    overflow-y: hidden;
}

:root{
    --first-color: #81bd36;
    --second-color: #81bd36;
    --third-color: #81bd36;
    --fourth-color: #F3FF90;
    --fifth-color: #ffffff;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Aldrich", sans-serif;
}

p,a,li,td,input,label,button{
    /* font-family: "Gidugu", sans-serif; */
    font-family: 'Poppins', sans-serif;
}

header nav{
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease-in-out;
    padding: 30px 0 !important;
}

i.icofont-login{
    font-size: 15px;
}

.header-nav{
    margin: 0 auto;
    padding: 0;
    overflow: visible !important;
}

.fixed-top::before{
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
    /* background: #263348; */
    background-color: rgba(0, 0, 0, 0.7); 
}

.navbar-nav {
    display: flex;
}

.navbar-nav .nav-item {
    flex-grow: 1;
    text-align: center;
}

nav .navbar-collapse{
    margin-left: 400px;
}

.logo{
    width: 19%;
}

.logo img{
    width: 100%;
}

/* Estilos boton navbar */
button.quote{
    background-color: var(--second-color);
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid transparent;
}

button.quote:hover{
    background-color: var(--first-color);
    transition: 0.4s;
}

ul,li,a,button{
    color: var(--fifth-color) !important;
    font-size: 17px;
    font-weight: 600 !important;
    justify-content: space-between !important;
}

ul,li,a:hover{
    color: var(--second-color) !important;
}

/* Estilos section hero */
#hero .container{
    position: relative;
    padding: 75px 0;
}

#hero::before{
    width: 100%;
    content: "";
    position: absolute;
    background: url(../img/flota.png);
    background-size: cover;
    background-position: center center; /* Ajusta la posición para que la parte inferior sea más visible */
    filter: brightness(0.5);
    padding: 218px 0;
    z-index: -1;
}

section#hero h5{
    text-align: center;
    color: var(--fifth-color);
    font-size: 40px;
    font-weight: 600;
    margin-top: 65px;
}

#hero p.intro{
    color: var(--fifth-color);
    text-align: center;
    font-size: 17px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

#hero button{
    background: transparent;
    border: 2px solid #ffffff;
    padding: 10px 45px;
    border-radius: 5px;
    margin-top: 11px;
    display: block;
    margin: 0 auto;
}

#hero button:hover{
    background: var(--second-color);
    transition: .4s;
    border: 2px solid #06D001;
}

/* Sección de Categorías */
.categories {
    padding: 40px 0;
    background-color: var(--fifth-color);
    text-align: center;
}

.categories h2{
    color: var(--first-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 10px;
}
/* Estilos para los botones de categoría */
.category-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    position: relative;
}

.category-btn {
    padding: 12px 20px;
    border: none;
    background-color: var(--second-color);
    color: white;
    font-weight: 600 !important;
    cursor: pointer;
    border-radius: 5px;
}

.category-btn:hover {
    background-color: var(--first-color);
}

/* Sección de Productos */
.products {
    flex: 1;
    padding: 0 0;
    width: 100%;
    margin: 0 auto;
}

.products h2{
    text-align: center;
    color: var(--first-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

.products h3{
    text-align: center;
    color: var(--first-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}

.products p{
    text-align: center;
    font-size: 25px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    justify-content: center;
}

.product-item {
    border: 1px solid #d1d2d2;
    border-bottom: 1px solid #d1d2d2; /* Define un borde inferior más grueso si es necesario */
    padding: 0 0 15px 0;
    margin-bottom: 20px; /* Añade un margen inferior para el espacio entre las tarjetas */
    width: 100%;
    text-align: center;
    max-width: 315px;
    transition: all 0.3s ease; /* Añade una transición suave para cambios de estilo */
}

.product-item img {
    width: 100%;
    height: 280px;
}

.container.storage{
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0 !important;
}

.product-item button {
    margin-top: 10px;
    padding: 8px 10px;
    background-color: var(--second-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.product-item button:hover {
    background-color: var(--first-color);
}

/* Estilos seccion info de productos */
#info h3{
    color: var(--second-color);
    margin-top: 140px;
    font-size: 30px;
    border-bottom: 2px solid #9BEC00;
    position: relative;
    display: flex; /* Utiliza flexbox para alinear el pseudo-elemento junto con el texto */
    align-items: center; /* Alinea el pseudo-elemento verticalmente con el texto */
}

#info h3::before{
    content: "";
    display: block;
    width: 5px;
    height: 30px;
    background-color: var(--first-color);
    margin-right: 10px; /* Agrega espacio entre el pseudo-elemento y el texto del título */
}

#info ul, li{
    color: #000 !important;
    font-weight: 100 !important;
    font-size: 17px !important;
}

#info strong{
    font-weight: 600;
}

.photo img{
    width: 100%;
    height: 560px;
    margin-top: 120px;
    filter: brightness(0.8);
    border-radius: 10px;
}

.listas {
    padding: 15px 25px;
}

.listas h2{
    color: var(--first-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 45px;
}

.listas h2:hover{
    color: var(--second-color);
}

.listas p{
    font-size: 17px;
}

#info p{
    font-size: 17px;
}

/* Estilos Footer */

#footer{
    background: #81bd36;
    margin-top: 70px;
    padding: 60px 0 25px 0;
}

.col-lg-2, .col-lg-3{
    margin: 0;
}

.col-lg-5{
    padding: 0;
}

.col-lg-2.quitar{
    padding: 0;
}

.col-lg-3.quitar{
    padding: 0;
}

.col-md-5, .col-md-7{
    margin: 0;
    padding: 0;
}

.pie-logo{
    width: 100%;
    max-width: 250px;
}

.pie-logo img{
    width: 100%;
}

#footer p{
    font-size: 17px;
    color: var(--fifth-color);
    margin-top: 15px;
    padding-right: 20px;
    margin-bottom: 0;
}

.footer .redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer .redes a:hover{
    color: var(--fifth-color);
}

.redes i{
    font-size: 20px;
    border-radius: 100%;
    border: 2px solid #dad8d7;
    padding: 8px;
    color: #dad8d7;
    margin: 0;
}

.redes i:hover{
    color: var(--fifth-color);
}

#footer h4{
    color: var(--fifth-color);
    font-size: 19px;
    font-weight: 600;
}

ul{
    padding-left: 0;
    padding-top: 0;
}

li{
    padding: 0;
    padding-top: 0;
}

#footer ul li{
    list-style: none;
    display: flex;
    align-items: center;
}

#footer a{
    text-decoration: none;
    font-size: 17px;
    
    font-weight: 500;
    color: #dad8d7 !important;
}

#footer a:hover{
    color: var(--fifth-color) !important;
}

#footer p.rincon{
    font-size: 17px !important;
    padding: 0;
    margin: 0;
}

.footer .copyright{
    padding-top: 15px;
    border-top: 1px solid #dad8d7;
    margin-top: 40px !important;
    overflow: visible; /* Cambia a visible para evitar ocultar elementos */
}

.footer .design{
    color: var(--fifth-color);
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}

.scroll-top.active{
    visibility: visible;
    opacity: 1;
}

.scroll-top{
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--second-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background 0.4s ease; /* Transición solo para el cambio de fondo */
    text-decoration: none; /* Elimina la línea debajo del enlace */
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover{
    background: var(--first-color);
}

.scroll-top i{
    font-size: 24px;
    color: var(--fifth-color);
}

.scrolled-dark {
    background-color: rgba(0, 0, 0, 0.7); /* Establece el color de fondo */
    opacity: 1 !important; /* Asegura que el menú sea completamente visible */
}

/* Responsive */

@media screen and (min-width: 321px) and (max-width: 379px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .container{
        width: 100%;
        margin: 0 auto;
        max-width: 300px;
    }
    .logo{
        width: 45% !important;
    }
    #hero::before{
        padding: 218px 0 560px 0;
    }
    .category-list {
        display: grid;
    }
    .category-btn{
        width: 100%;
    }
    .product-item{
        max-width: 541px;
    }
    .products h3{
        font-size: 24px;
    }
    .products p{
        font-size: 30px;
    }
    .photo img{
        height: 320px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 380px) and (max-width: 423px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .container{
        width: 100%;
        margin: 0 auto;
        max-width: 350px;
    }
    .logo{
        width: 45% !important;
    }
    #hero::before{
        padding: 218px 0 490px 0;
    }
    .category-list {
        display: grid;
    }
    .category-btn{
        width: 100%;
    }
    .product-item{
        max-width: 541px;
    }
    .products h3{
        font-size: 24px;
    }
    .products p{
        font-size: 30px;
    }
    .photo img{
        height: 350px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 424px) and (max-width:499px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .container{
        width: 100%;
        margin: 0 auto;
        max-width: 410px;
    }
    .logo{
        width: 45% !important;
    }
    #hero::before{
        padding: 218px 0 430px 0;
    }
    .category-list {
        display: grid;
    }
    .category-btn {
        font-size: 15px;
        width: 100%;
    }
    .product-item{
        max-width: 541px;
    }
    .product-item img{
        height: 370px;
    }
    .products h3{
        font-size: 27px;
    }
    .products p{
        font-size: 30px;
    }
    .photo img{
        height: 400px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 500px) and (max-width:556px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .container{
        width: 100%;
        margin: 0 auto;
        max-width: 480px;
    }
    .logo{
        width: 45% !important;
    }
    #hero::before{
        padding: 218px 0 330px 0;
    }
    .category-list {
        display: grid;
    }
    .category-btn {
        font-size: 15px;
        width: 100%;
    }
    .product-item{
        max-width: 541px;
    }
    .product-item img{
        height: 500px;
    }
    .products h3{
        font-size: 32px;
    }
    .products p{
        font-size: 30px;
    }
    .photo img{
        height: 500px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 557px) and (max-width:575px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .container{
        width: 100%;
        margin: 0 auto;
        max-width: 520px;
    }
    .logo{
        width: 34% !important;
    }
    #hero::before{
        padding: 218px 0 330px 0;
    }
    .category-list {
        display: grid;
    }
    .category-btn {
        font-size: 13px;
        width: 100%;
    }
    .product-item{
        max-width: 541px;
    }
    .product-item img{
        height: 500px;
    }
    .products h3{
        font-size: 32px;
    }
    .products p{
        font-size: 30px;
    }
    .photo img{
        height: 500px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 576px) and (max-width:767px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .logo{
        width: 34% !important;
    }
    #hero::before{
        padding: 218px 0 330px 0;
    }
    .category-btn {
        font-size: 13px;
    }
    .product-item{
        max-width: 541px;
    }
    .product-item img{
        height: 500px;
    }
    .products h3{
        font-size: 32px;
    }
    .products p{
        font-size: 30px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 768px) and (max-width:991px){
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
        background: var(--second-color);
    }
    /* Quitar borde blanco en el estado de enfoque y clic */
    [type=button]:not(:disabled):focus, 
    [type=reset]:not(:disabled):focus, 
    [type=submit]:not(:disabled):focus, 
    button:not(:disabled):focus,
    [type=button]:not(:disabled):active, 
    [type=reset]:not(:disabled):active, 
    [type=submit]:not(:disabled):active, 
    button:not(:disabled):active {
        outline: none; /* Elimina el contorno cuando se hace foco */
        box-shadow: none; /* Elimina cualquier sombra de borde */
    }
    .navbar-collapse {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .navbar-nav {
        align-items: flex-start;
        margin-top: 31px;
    }
    button.quote{
        display: block;
        align-items: flex-start;
    }
    .logo{
        width: 34% !important;
    }
    #hero::before{
        padding: 218px 0 276px 0;
    }
    .product-list{
        gap: 0 20px;
    }
    .product-item{
        max-width: 350px;
    }
    .product-item img{
        height: 330px;
    }
    .listas{
        padding: 15px 0 15px 12px;
    }
    .redes{
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 992px) and (max-width:1199px){
    nav .navbar-collapse{
        margin-left: 100px;
    }
    .product-list{
        gap: 0 20px;
    }
    .photo img{
        height: 460px;
    }
    /* .product-item {
        width: 100%;
        max-width: 225px;
    }
    .product-list{
        flex-wrap: nowrap;
    }
    .product-item img{
        height: 200px;
    }
    .products h3 {
        font-size: 17px;
    } */
}

@media screen and (min-width: 1200px) and (max-width:1400px){
    nav .navbar-collapse{
        margin-left: 250px;
    }
    .product-list{
        gap: 0 20px;
    }
    .photo img{
        height: 500px;
    }
    /* .product-item {
        width: 100%;
        max-width: 315px;
    }
    .product-item img{
        height: 250px;
    }
    .product-list{
        flex-wrap: nowrap;
    } */
}

/* Estilos seccion servicio almacenamiento */

section#carrusel{
    width: 100%;
    margin: 0 auto;
    margin-top: 70px;
}

#carrusel .container {
    padding: 0 10px; /* Asegura que el contenedor tenga un pequeño espacio interior para ajustarse al diseño */
}

#carrusel .row {
    margin: 0 -10px; /* Márgenes negativos para compensar el padding de las columnas */
}

#carrusel .col-lg-3 {
    padding: 0 10px; /* Agrega espacio entre las columnas sin afectar el tamaño total */
}

#carrusel img {
    width: 100%;
    max-width: 100%;
    display: block; /* Asegura que las imágenes se comporten como bloques dentro de las columnas */
    height: 270px;
}

.container.storage{
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0 !important;
    margin-top: 150px !important;
}

.storage h3{
    color: var(--second-color);
    border-bottom: 2px solid var(--first-color);
}