@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --orange: #ff7800;
    --black: #130f40;
    --ligth-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    --border: 2rem solid rgba(0, 0, 0, .1);
    --border1: 2rem solid #ff7800;
    --outlinepuntos: 1rem solid rgba(0, 0, 0, .1);
    --outlineproductos: 0.5rem solid rgba(0, 0, 0, .1);
    --outline: 0.1rem solid rgba(0, 0, 0, .1);
    --outlineabajo: 0rem solid rgba(0, 0, 0, .1);
    --outline-hover: .5rem solid var(--black);
    --white: #ffff;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 8%;
}

.heading span {
    background: var(--orange);
    color: #fff;
    display: inline-block;
    padding: 2rem 2rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}

.heading {
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: var(--black);
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 3% 3%;
    font-size: 1.7rem;
    border-radius: 2rem;
    color: var(--black);
    cursor: pointer;
    background: none;
}

.btn:hover {
    background: var(--orange);
    color: #fff;
}

.header .shopping-cart .box .content span {
    color: var(--ligth-color);
    font-size: 1.6rem;
}

.home .content h3 span {
    color: var(--orange);
}

.features .box-container .box:hover {
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    box-shadow: var(--box-shadow);
    border-bottom: var(--outline);
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
    text-decoration: none;
}

.header .navbar a {
    font-size: 1.7rem;
    margin-left: 3rem;
    color: var(--ligth-color);
}

.header .navbar a:hover {
    color: var(--orange);
}

.header .icons a {
    font-size: 2.5rem;
    color: var(--ligth-color);
    margin-left: 2rem;
}

.header .icons a:hover {
    color: var(--orange);
}

#menu-bars {
    font-size: 3rem;
    border-radius: .5rem;
    border: var(--outline);
    color: var(--ligth-color);
    cursor: pointer;
    display: none;
}

/* Ajustar la posición de .home para alinearse con el header */
.home {
    background-image: url('../img/fonn.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: calc(100vh - 80px);
    /* Resta la altura del header */
    margin-top: 80px;
    /* Igual a la altura del header */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Estilo para dispositivos móviles */
@media (max-width: 768px) {
    .home {
        background-size: 140% auto;
        /* Ajusta la imagen al ancho de la pantalla */
        background-position: top center;
        height: calc(100vh - 150px);
        /* Ajustar si el header es más pequeño en móvil */
        margin-top: 100px;
        /* Altura del header en dispositivos móviles */
    }
}



.home .content {
    text-align: center;
    color: #fff;
}

.home .content span {
    font-size: 2.5rem;
}

.home .content h3 {
    font-size: 5.5rem;
    color: var(--orange);
}

.home .content a {
    display: inline-block;
    margin-top: -10rem;
    padding: 0.8rem 3rem;
    border-radius: 0.5rem;
    border: var(--border1);
    background: var(--orange);
    color: #fff;
    font-size: 2rem;
    position: relative; /* Agrega control sobre la ubicación */
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .home .content a {
        margin-top: -40rem; /* Incrementa el margen superior */
        padding: 0.6rem 2.5rem; /* Ajusta el tamaño del botón */
        font-size: 1.7rem; /* Reduce el tamaño del texto */
    }

    /* Ajustar la ubicación vertical */
    .home .content {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centra verticalmente */
        align-items: center; /* Centra horizontalmente */
        height: 100%; /* Asegura que ocupe toda la altura del contenedor */
    }
}


.home .content a:hover {
    background: var(--black);
    border: var(--border);
}

.features .heading {
    text-align: center;
    padding: 3rem 0;
    font-size: 4rem;
    color: var(--black);
}

.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.features .box-container .box {
    padding: 2rem;
    background: #fff;
    border: var(--outlinepuntos);
    box-shadow: var(--box-shadow);
    text-align: center;

}

.features .box-container .box img {
    height: 35rem;
}

.features .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: var(--black);
}

.features .box-container .box p {
    font-size: 1.4rem;
    color: var(--ligth-color);
    padding: 1rem 0;
}

.products .heading {
    text-align: center;
    padding: 3rem 0;
    font-size: 4rem;
    color: var(--black);
}

.products .swiper-slide {
    padding: 2rem;
    background: #fff;
    border: var(--outlineproductos);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-radius: 1rem;
}

.swiper-wrapper {
    padding: 8px 0;
}

.products .product-slider .box:hover {
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.products .swiper-slide img {
    height: 20rem;
}

.products .swiper-slide h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: var(--black);
}

.products .swiper-slide .price {
    font-size: 2rem;
    color: var(--ligth-color);
    padding: 1rem 0;
}

.products .swiper-slide .btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    cursor: pointer;
}

.products .swiper-slide .btn:hover {
    background: var(--black);
}

.categories .heading {
    text-align: center;
    padding: 3rem 0;
    font-size: 4rem;
    color: var(--black);
}

.categories .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.categories .box-container .box {
    padding: 2rem;
    background: #fff;
    border: var(--outlinepuntos);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-radius: 1rem;
}

.categories .box-container .box:hover {
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.categories .box-container .box img {
    height: 20rem;
}

.categories .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: var(--black);
}

.footer {
    background: var(--black);
    padding: 2rem 9%;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box p {
    font-size: 2rem;
    color: var(--white);
    padding: 1rem 0;
}

.footer .box-container .box a {
    font-size: 1.7rem;
    color: var(--ligth-color);
    display: block;
    padding: 1rem 0;
}

.footer .box-container .box a i {
    color: var(--orange);
    padding-right: .5rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
    color: var(--black);
}

.footer .box-container .box .share a {
    font-size: 2rem;
    color: #fff;
    padding: 1rem;
    display: inline-block;
    border: var(--outlineabajo);
    margin-top: .5rem;
}

.footer .box-container .box .share a:hover {
    background: var(--orange);
}

.footer .credit {
    text-align: center;
    border-top: var(--outline);
    font-size: 2rem;
    color: #fff;
    padding: 1rem;
    margin-top: 2rem;
}

.footer .credit span {
    color: var(--orange);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black);
    margin-top: 10px;
    transition: .2s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--orange);
}

@media (max-width:768px) {
    #menu-bars {
        display: initial;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: var(--outline);
        border-bottom: var(--outline);
        padding: 1rem 0;
        text-align: center;
        display: none;
    }

    .header .navbar.active {
        display: initial;
    }

    .header .navbar a {
        font-size: 2rem;
        margin: 1.5rem;
        display: block;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    .home .content span {
        font-size: 2rem;
    }

    .home .content p {
        font-size: 1.4rem;
    }

    .home .content a {
        font-size: 1.7rem;
        padding: .5rem 2rem;
    }
}


/* Reducir el tamaño del texto "Ingresar" */
.icons .login-text {
    font-size: 5px;
    /* Ajusta el tamaño según tus necesidades */
    margin-left: 10px;
    /* Añadir un margen izquierdo para separación */
}

/* Ajustar las imágenes en la sección "Nuestra Empresa" */
.features .box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}