
@font-face{
    font-family: monserrat;
    src: url('/estilos/font/Montserrat.ttf') format('truetype');
}
/* con margin y paddin le quitamos todos los margenes a la web*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}
body { 
    color: black;
    font-family: monserrat;
}


/* colores de la barra scroll bar */

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #eedb06;
    }

    ::-webkit-scrollbar-thumb {
        background: rgb(20, 139, 30);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgb(116, 204, 245);
    }

/*barra de scroll para firefox para html-->*/

html {
    overflow-y: scroll;
    scrollbar-color: #1ec715 #324582;
    scrollbar-width:thin;
}

/*fin de barra de scroll para firefox*/



  /*propiedades del boton inferior de subir q esta activado - "display: block;" 
la aparece*/
  .scroll-up-btn {
      position: fixed;
      display: block;
    height: 45px;
    width: 42px;
    background: rgb(3, 10, 26);
    right: 10px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #d31f1f;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
/*transparencia del boton inferior de subir con opacity: .1; al .8; */
.scroll-up-btn.show {
    bottom: 30px; 
    background: #b1bddb;
    opacity: .5;   
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}

  /*fin propiedades del boton inferior de subir q esta activado*/
 

    
    /*INICIO DE LA GRID*/

.contenedor {
    width: 100%;         /* el ancho del contenedor*/
    max-width: 1110px;  /* y este es el ancho máximo puede variar*/
    margin: 0px auto;  /* margen arriba y abajo y "auto" para centrar la web*/
    display: grid;      /* esto formatea el gri*/
    grid-gap: 2px;         /* margen entre las columnas y filas*/
    grid-template-columns: repeat(4, 1fr); /* 3 columnas de un mismo tamaño*/
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "header header header header"
                        "contenido contenido contenido contenido"
                        "contenida contenida contenida contenida"
                        "contenidb contenidb contenidb contenidb"
                        "contenido-1 contenido-1 contenido-2 contenido-2" 
                        "sidebar sidebar sidebar sidebar" 
                        "widget-1 widget-1 widget-1 widget-1"
                         "widget-2 widget-2 widget-2 widget-2"
                        "footer footer footer footer";
}
.contenedor > div,
.contenedor .header,
.contenedor .contenido,
.contenedor .contenida,
.contenedor .contenidb,
.contenedor .contenido-1,
.contenedor .contenido-2,
.contenedor .sidebar, 
.contenedor .widget-1,
.contenedor .widget-2,
.contenedor .footer {
    background: #fff;
    padding: 0px; /* alto del menu */
    border-radius: 4px;
    color: #fff;
}
 
/* HEADER MENU SECCION */
.contenedor .header {  
    grid-area: header;  
    min-width: 100%;
}

/* Logo y texto del menu */
.max-width {
    max-width: 1300px;

/* espacio entre logo y menu */
    padding: 0  70px;  
    margin: auto;
}
.logo img{
    width: 300px;  
}

.logo1 img {
    display: none;
    width: 100px;
    padding-top: 10px;
    margin-top: -15px;
    margin-bottom: -15px;
}
/* MENU  PROPIEDADES */
.navbar {
    left: 0;
    top: 0%;
}
/* SI CAMBIA POSITION A RELATIVE EL MENU QUEDA MOVIBLE NORMAL EN FIXED SE QUEDA PEGADO ARRIBA EN LA WEB */
.navbar {
    position: fixed;  
    width: 100%;
    z-index: 999;
    /* Padding Alto del Header Menu*/
    padding: 1px 0;  
    padding-top: 8px;
    transition: all 0.3s ease;
    /* INICIO color cambiante  anidado a Keyframes para q funcione */
    background: linear-gradient(-45deg, #173b05, #7d7505, #124e64, #02600e);
    background-size: 400% 400%; 
    animation: change 14s ease-in-out infinite;
    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}


.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: rgb(222, 160, 99);
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: rgb(43, 220, 20);
    transition: all 0.3s ease;
} 
.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    /*propiedades del menu*/
    display: block;
    color: rgb(110, 184, 229);
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: rgb(241, 222, 117);
}
 

/* propiedades de la hamburguesa menu emergente */
.menu-btn {
    color: #bab838;
    font-size: 33px;
    cursor: pointer;
    display: none;
}
 

/* SLIDER  SECCION */
.contenedor .contenido { 
    grid-area:contenido;
    color: black;
padding: 0; 
margin-top: -40px;

/* INICIO color cambiante  anidado a Keyframes para q funcione */
   
    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}

.texn{
    text-align: center;
    font-size: 22px; 

padding-top:  100px;
}

/* TITULOS SECCION */
.contenedor .contenida {
    grid-area: contenida;
    color: rgb(9, 73, 48);
    text-align: center;
    
    /* INICIO color cambiante  anidado a Keyframes para q funcione */
    background: linear-gradient(-45deg, #4e4bf3, #f8d01e, hsl(233, 86%, 75%), #524bd7);
    background-size: 400% 400%;
    animation: change 10s ease-in-out infinite;
    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */


}
.imag1 img{
    border-radius: 6%;
    width: 70%;
}

.contenidb h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: rgb(77, 66, 15);
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-shadow: .1rem .1rem .4rem rgb(238, 231, 11);
 
} 

.contenidb h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: rgb(119, 52, 125);
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-shadow: .1rem .1rem .4rem rgb(202, 233, 78);


}
.contenidb h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: rgb(78, 75, 135);
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-shadow: .1rem .1rem .4rem rgb(223, 234, 221);

}

 /* RESPONSIVE IMAGEN SECCION */
.contenedor .contenidb { 
grid-area: contenidb;
color: rgb(232, 9, 9);
    padding: 5px;
    /* INICIO color cambiante  anidado a Keyframes para q funcione */
    background: linear-gradient(-45deg, #c6e757, #de732c, #073869, #417ee0);
    background-size: 400% 400%;
    animation: change 12s ease-in-out infinite;
    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
} 

.cpt img {
    width: 100%;
}

/*  SECCION WEB DESDE 80 DÓLARES */
.contenedor .contenido-1 { 
    grid-area: contenido-1; 
    color: rgb(58, 10, 10);
    padding: 5px; 
        /* INICIO color cambiante  anidado a Keyframes para q funcione */
            background: linear-gradient(-45deg, #5a4bde, #5c92cc, hsl(102, 43%, 66%), #a49f5a);
            background-size: 400% 400%;
            animation: change 14s ease-in-out infinite;
            /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}
.dola{
    text-align: center;
    color: #84c662;
}
.item1{
margin-left: 10px;
}
.check{
color: #aa5717;
}


.textsec{ 
/* Texto 3D */
    font-weight: bold;
    color: #141b4d;
    text-shadow: 0 2px 0 #c0aa68, 
        0 2px 0 #c9ca9f,
        0 1px 0 #dad3be;
  /* Fin de Texto 3D */
}

.textsec1 {
    /* Texto 3D */ font-weight: bold;
    color: #6b530b;
    text-shadow: 0 2px 0 #8b6e15,
        0 3px 0 #cabf9f,
        0 3px 0 #dad3be;
    /* Fin de Texto 3D */
}



/* IMAGEN SECCION */
.contenedor .contenido-2 { 
    grid-area: contenido-2; 
    background-color: #124e64;
    padding: 0px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;  
/* INICIO color cambiante  anidado a Keyframes para q funcione */
background: linear-gradient(-45deg, #454e55, #bc4c0f, hsl(234, 73%, 51%), #1eb3b0);
background-size: 400% 400%;
animation: change 14s ease-in-out infinite;
/* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}
.contenido-2 img {
    border-radius: 20%;
    margin-top: 50px;
    width: 80%;
    animation: floatImage 4s ease-in-out infinite;
    
    }
    
    @keyframes floatImage {
        0% {
            transform: translateY(0);
        }
    
        50% {
            transform: translateY(-2.4rem);
        }
    
        100% {
            transform: translateY(0);
        }   }
/* SECCION CARD BANNERS*/
.contenedor .sidebar { 
    grid-area: sidebar;
    padding: 5px;
/* INICIO color cambiante  anidado a Keyframes para q funcione */
background: linear-gradient(-45deg, #14127e, #65550f, hsl(67, 76%, 21%), #524bd7);
background-size: 400% 400%;
animation: change 14s ease-in-out infinite;
/* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}


/* CARRUSEL  SECCION */
.contenedor .widget-1{
    background: blue;
    grid-area: widget-1;
    text-align: left;
    /* INICIO color cambiante  anidado a Keyframes para q funcione */
        background: linear-gradient(-45deg, #091c45, #2a4888, hsl(220, 75%, 58%), #3e70e4);
        background-size: 400% 400%;
        animation: change 14s ease-in-out infinite;
        /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}

/* EQUIPO   SECCION */
.contenedor .widget-2 {
    grid-area: widget-2;
    color: #dceda0;
    text-align: center;
/* INICIO color cambiante  anidado a Keyframes para q funcione */
    background: linear-gradient(-45deg, #14127e, #3b75f2, hsl(144, 63%, 28%), #302b8f);
    background-size: 400% 400%;
    animation: change 14s ease-in-out infinite;
    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}


/* CONTACTO o FOOTERS SECCION */
.contenedor .footer {
    grid-area: footer;
    text-align: center;
    /* INICIO color cambiante  anidado a Keyframes para q funcione */
        background: linear-gradient(-45deg, #091c45, #321443, hsl(219, 75%, 14%), #063b09);
        background-size: 400% 400%;
        animation: change 14s ease-in-out infinite;
        /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}


   /* "Keyframes" del color cambiante anidado a la animacion de Background arriba */

@keyframes change {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

/*FIN DE LA GRID*/




/* RESPONSIVE (ADAPTABLE) MEDIA QUERYS */


@media (max-width: 1104px) {
 
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {

    /* MENU EMERGENTE ADAPTABLE PROPIEDADES */
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu { 
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: rgb(50, 42, 79);
        text-align: center;
        padding-top: 40px;
        transition: all 0.3s ease;
        /*efecto de aparecer menu*/
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        /*Propiedades del menu emergente*/
        display: inline-block;
        margin: 10px 0;
        /*espacio entre links en el menu emergente*/
        font-size: 25px;
        /*tamaño de letras links en el menu emergente*/
    }

    .max-width {
        max-width: 930px;
    }
.logo1 img { /*tamaño de imagen logo*/
    display: block;
    width: 250px;
}

.cpt img { /*imagen de dispositiv responsive*/
    width: 100%;  

}

}

@media screen and (max-width: 720px) {

 .contenedor {
 grid-template-areas:
"header header header header"
"contenido contenido contenido contenido"
"contenida contenida contenida contenida"
"contenidb contenidb contenidb contenidb"
"contenido-1 contenido-1 contenido-1 contenido-1"
"contenido-2 contenido-2 contenido-2 contenido-2"
"sidebar sidebar sidebar sidebar"
"widget-1 widget-1 widget-1 widget-1"
"widget-2 widget-2 widget-2 widget-2"
 "footer footer footer footer";

}}
.contenedor .contenido {
    grid-area: contenido;
    color: black;
    padding: 0; 

    /* INICIO color cambiante  anidado a Keyframes para q funcione */

    /* FIN color cambiante anidado a "Keyframes" para q funcione, que esta al final antes de MEDIA QUERYS */
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }
 .logo1 img {
     display: block;
    width: 250px;
 } 

.logo img{

    width: 200px;

}

}