/*
 Nombre del Proyecto: Coophel
 Autor: Eduardo Carballo
 Descripción: Preset de la Página Wed de Coophel
 Versión: 1.0
 Fecha: 03/10/2024
*/

/*==================================
[Tabla de contenido]
====================================
1. Configuraciones Generales
2. Header
3. Volver al Inicio
4. Sobre Nosotros
5. Descripción de Servicios (Plantilla 2)
6. Animaciones
7. Preloader
*/

/*------------------------------------------------------
/  1. Configuraciones Generales
/------------------------------------------------------*/

html,body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}
body{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0;
    color: #000;
}
:root{
    --Principal: #85c226;
    --Secundario: #3c7639;
    --Tercero: #efe000;
}
p{
    margin: 0 0 15px;
}
p.justi{
    text-align: justify;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat';
    font-weight: 800;
    color: #000;
    line-height: 1.5;
    margin: 0 0 15px;
}
a{
    color: #1a1a1a;
    text-decoration: none;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
i,h3,p{
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
a:hover{
    color: white;
    text-decoration: none;

}
.white{
    color: #fff;
}
@media (min-width: 1440px){
    .container.largeContainer{
        max-width: 1250px;
    }
}

/*------------------------------------------------------
/  2. Header
/------------------------------------------------------*/
.icon_box_04{
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
.fixedHeader.header02{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--Secundario);
    z-index: 99;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .15);
}
.fixedHeader.header03{
    position: fixed;
    width: 100%;
    padding: 0 100px;
    border: none;
    top: 0;
    left: 0;
    background: var(--Secundario);
    z-index: 99;
    box-shadow: 0px 0px 25px rgba(255, 255, 255, .15);
}
.fixedHeader.header03 .mainMenu > ul > li{
    padding: 51px 0;
}
.fixedHeader.header03 .logo{
    padding: 14px 0;
}

/*------------------------------------------------------
/  3. Volver al Inicio
/------------------------------------------------------*/

#backtotop {
    position: fixed;
    right: 25px;
    bottom: -25px;
    width: 40px;
    height: 40px;
    background: var(--Principal);
    color: var(--Tercero);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border-radius: 50%;
}
#backtotop i{
    line-height: inherit;
}
#backtotop:hover{
    background: var(--Secundario);
    color: var(--Principal);
}

/*------------------------------------------------------
/  4. Sobre Nosotros
/------------------------------------------------------*/

input:focus, button:focus, select:focus, textarea:focus, a:focus{
    outline: 0;
    box-shadow: none;
}
.subTitle{
    font-weight: 500;
    font-size: 18px;
    line-height: .9;
    margin: 0 0 24px;
}
.subTitle span{
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--Principal);
    color: var(--Secundario);
    margin-right: 20px;
    position: relative;
    top: -5px;
}
.secTitle{
    font-size: 65px;
    line-height: 65px;
    margin: 40px 0 63px;
}
.secTitle span{
    color: var(--Principal);
}

/*------------------------------------------------------
/  5. Descripción de Servicios (Plantilla 2)
/------------------------------------------------------*/

.qu_btn{
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 60px;
    border: none;
    background: linear-gradient(90deg, var(--Principal) 0%, var(--Tercero) 100%);
    border-radius: 50px;
    padding: 0 36px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    line-height: 60px;
    transition-delay: 0s, 0s;
    transition-duration: 0.4s, 0.4s;
    transition-property: border-color, color;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    vertical-align: middle;
}
.qu_btn:hover{
    color: #010101;
    font-weight: 900;
    font-size: 20.15px;
    padding: 0 25px;
}
.qu_btn:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0px, -3em, 0px);
    transform-origin: 0 100% 0;
    transition: transform 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s;
    width: 150%;
    z-index: -1;
}
.qu_btn:hover:before {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 0deg);
    transition-timing-function: cubic-bezier(0.3, 1, 0.3, 1);
}

/*------------------------------------------------------
/  6. Animaciones
/------------------------------------------------------*/

.move_anim img{
    -webkit-animation: movebounce 3.0s linear infinite;
    animation: movebounce 3.0s linear infinite;
}
.move_anim2 img{
    -webkit-animation: movebounce2 3.0s linear infinite;
    animation: movebounce2 3.0s linear infinite;
}
.blinker_anim img{
    -webkit-animation: blinker 3.0s infinite linear;
    animation: blinker 3.0s infinite linear;
}
.blinker_anim2 img{
    -webkit-animation: blinker2 3.0s infinite linear;
    animation: blinker2 3.0s infinite linear;
}
.rotate_anim img{
    -webkit-animation: rotated 3.0s infinite linear;
    animation: rotated 3.0s infinite linear;
}
.shine-anim{
    overflow: hidden;
}
.shine-anim:before{
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.shine-anim:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
@keyframes movebounce {
    0% {
        transform: translateY(0px); }
    50% {
        transform: translateY(20px); }
    100% {
        transform: translateY(0px); }
}
@keyframes movebounce2 {
    0% {
        transform: translateX(0px); }
    50% {
        transform: translateX(20px); }
    100% {
        transform: translateX(0px); }
}
@keyframes rotated {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes blinker {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.03, 1.03);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes blinker2 {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.5, 1.5);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes circle {
    0% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(450deg);
    }
}
@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .15), 0 0 0 30px rgba(255, 255, 255, .15), 0 0 0 50px rgba(255, 255, 255, .15);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, .15), 0 0 0 50px rgba(255, 255, 255, .15), 0 0 0 70px rgba(255, 255, 255, 0);
    }
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes zoom-hover {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: .5;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

/*------------------------------------------------------------------
/ 7. Preloader
/------------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, var(--Principal) 20%, var(--Secundario) 100%);
}
.zoom-container {
    width: 300px; /* Ajusta el tamaño del contenedor */
    margin: 0 auto; /* Centrar el contenedor */
}

/* Estilos para la imagen */
.zoom-container img {
    width: auto;
    height: 250px;
    animation: zoomInOut 1s infinite; /* Animación infinita de zoom */
}

/* Definición de la animación */
@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Tamaño normal */
    }
    50% {
        transform: scale(1.5); /* Zoom In al 120% */
    }
    100% {
        transform: scale(1); /* Vuelve al tamaño original */
    }
}

@media (max-width: 576px) {
    .zoom-container img {
        width: auto;
        height: 180px;
        animation: zoomInOut 1s infinite; /* Animación infinita de zoom */
    }
}