@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
    --red:#ff3838;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: all .2s linear;
}

*::selection{
    background: var(--red);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body{
    background-color:#f7f7f7;
}

/* HOME */
section{
    padding: 2rem 9%;
}

/* HEADING - TITULOS */
 .heading{
    text-align: center;
    font-size: 3.5rem;
    padding: 1rem;
    color: #666;
}

.heading span{
    color: var(--red);
}

/* BOTON DE ORDER HOME */
.btn{
    display: inline-block;
    padding: .8rem 3rem;
    border: .2rem solid var(--red);
    color: var(--red);
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 1rem;
}

/* EFECTOS DEL BOTON */
.btn::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--red);
    transition: .3s linear;
    z-index: -1;
}

.btn:hover::before{
    width: 100%;
    left: 0;
}

.btn:hover{
    color: #fff;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 2rem 9%;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

/* LOGO and MENU*/

header .logo{
    font-size: 2.5rem;
    font-weight: bold;
    color: #666;
    position: relative;
    
}


header .logo img{
    position: absolute;
    top: 0; bottom: 0;
    left: -380px; right:0;
    margin: auto;
    height: 7rem;
    width: 7rem;
    padding-right: 10px; 
    
}

header .logo span{
    color: var(--red);
}

header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color: #666;
}

header .navbar a:hover{
    color: var(--red);
}

/* BURGER MENU  */
#menu-bar{
    font-size: 3rem;
    cursor: pointer;
    color: #666;
    border: .1rem solid #666;
    border-radius: .3rem;
    padding: .5rem 1.5rem;
    display: none;
}

/* <=============  MAIN and SECTION ================> */
/* SECTION HOME */
.home{
    display: flex;
    flex-wrap:wrap ;
    gap: 1.5rem;
    min-height: 100vh;
    align-items: center;
    /* url -> background white the fruits and food */
    background: url(../img/home-bg.jpg) no-repeat; 
    background-size: cover;
    background-position: center;
}

.home .content{
    flex: 1 1 40rem;
    padding-top: 6.5rem;
}

.home .content a{
    padding-right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: var(--red);
}

.home .content a:hover{
    color: #fff;
}

.home .content i{
    padding-right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #008000;
}

.home .image{
    flex: 1 1 40rem;
}

.home .image img{
    width: 100%;
    padding:1rem;
    animation: float 3s linear infinite;
}

/* Movimiento de la Imagen "LOGO" */
@keyframes float{
    0%, 100%{
        transform:translateY(0rem);
    }
    50%{
        transform:translateY(3rem);
    }
}

/* Textos del HOME */
.home .content h3{
    font-size: 5rem;
    color: #333;
}

.home .content span{
    color: var(--red);
}

.home .content p{
    font-size: 1.7rem;
    color: #666;
    padding:1rem 0;
}


/* SERVICIOS "STEPS" */
.steps{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
}

.steps .box{
    flex: 1 1 25rem;
    padding: 1rem;
    text-align: center;
}

.steps .box img{
    border-radius: 50%;
    border: 1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    justify-content: space-between;
    
}

.steps .box h3{
    font-size: 3rem;
    color: #333;
    padding: 1rem;
}

/* <========= CONTENIDO GALLERY ========> */
.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box{
    height: 30rem;
    flex: 1 1 30rem;
    border: 1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
}

.gallery .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* EFECTO TEXTO IMAGEN */
.gallery .box-container .box .content{
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    padding: 2rem;
    padding-top: 5rem;
    text-align: center;
}

.gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color: #333;
}

.gallery .box-container .box .content p{
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.gallery .box-container .box:hover .content{
    top: 0;
}


/* <========= CONTENIDO REVIEW ========> */
.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review .box-container .box{
    text-align: center;
    padding: 2rem;
    border: 1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3);
    border-radius: .5rem;
    flex: 1 1 30rem;
    background-color: #333;
    margin-top: 6rem;
}

/* DISEÑO DE TARJETA DE PRESENTACION */
 .review .box-container .box img{
    height: 12rem;
     width: 12rem;
    border-radius: 50%;
    border: 1rem solid #fff;
    margin-top: -8rem; 
    object-fit: cover;
} 


.review .box-container .box h3{
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.review .box-container .box .stars i{
    font-size: 2rem;
    padding: .5rem 0;
    opacity: 70%;
    /* font-weight: bold; */
}

.review .box-container .box .stars .flag-y{
    color: #ffff00;
}

.review .box-container .box .stars .flag-b{
    color: #0000ff;
}

.review .box-container .box .stars .flag-r{
    color: #ff0000;
}

.review .box-container .box p{
    font-size: 1.7rem;
    color: #eee;
    padding: 1rem 0;
}


/* <=========== FOOTER ===========> */
.footer{
    background-color: #000;
    text-align: center;
}

.footer .share{
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

 .footer .share i{
    padding-right: 10px;
} 

.footer .credit{
    padding: 2.5rem 1rem;
    color: #fff;
    font-weight: normal;
    font-size: 2rem;
}

.footer .credit span{
    color: var(--red);
}


/* <=========== SCROLL TOP ===========> */
#scroll-top{
    position: fixed;
    top: -120%;
    right: 2rem;
    padding: .5rem 1rem;
    font-size: 4rem;
    background-color: var(--red);
    color: #fff;
    border-radius: .5rem;
    transition: 1s linear;
    z-index: 1000;
}


/* Utilizando JS podemos aparecer y desaparecer el Scroll-top */
/* Nota Importante: cuando utilizamos una clase "class" invocada por JS debemos colocar dicha clase pegada de las anteriores */
#scroll-top.active{ 
    top: calc(100% - 12rem);
}


/* <=========== LOADER GIF ===========> */
  .loader-container{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loader-container.fade-out{
    top: -120%;
} 
 

/* <=========== MEDIA QUERIES ===========> */

/* HTML and HEADER */
@media(max-width:991px){
    html{
        font-size: 55%;
    }

    header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
}

/* MENU-BAR */
@media(max-width:768px){
    #menu-bar{
        display: inherit;
    }

    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f7f7f7;
        border-top: .1rem solid rgba(0, 0, 0, .1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active{
       
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        display: block;
        border: .2rem solid rgba(0, 0, 0, .1);
        border-left: .5rem solid var(--red);
        background-color: #fff;
    }
}

/* HTML and HEADER "MOVIL" */ 
@media(max-width:450px){
    html{
        font-size: 50%;
    }

    .order .row form .inputBox input {
        width: 100%;
    }
}