:root {
    --primario: #1073BA;
    --secundario: #00DA55;
    --gris: #3B3B3B;
    --blanco: #FFFFFF;
    --negro: #1F1E1E;
    --grisClaro: #e1e1e1;

    --separacion: 5rem;

    --fuentePrincipal: 'Roboto', sans-serif;
    --fuenteSecundaria: 'Lato', sans-serif;
}
html {
    box-sizing: border-box;
    font-size: 62.5%;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: var(--fuentePrincipal);
    font-size: 1.6rem;
    line-height: 1.5;
}

/** Globales **/
.contenedor {
    max-width: 120rem;
    width: 90%;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 900;
    font-family: var(--fuenteSecundaria);
    margin: calc( var(--separacion) / 2 ) 0 ;
}
h1 {
    font-size: 4.4rem;
}
h2 {
    font-size: 3.6rem;
}
h3 {
    font-size: 2.8rem;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
button {
    display: block;
    width: 100%;
}
/** Utilidades **/
.text-center {
    text-align: center;
}

/** Degradados **/

.degradado-azul {
    font-weight: 600;
    color: transparent;
    background: linear-gradient(to right, #288ce3 0%,  #b3dbff 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke-width: .2rem;
    /* -webkit-text-stroke-color: rgb(255, 255, 255); */

}
/* Header */
.header {
    /* Altura minima de 600px */
    min-height: 60rem;
    background-image: url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* para que ocupe toda la pantalla */
    background-position:bottom center;
    padding: 5rem 0;
}
@media (min-width: 768px) { 
    .header{
        padding: 2rem 0;
    }
}
.contenido-header {
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    height: calc(60rem -4rem);
    justify-content: space-between;
    color: var(--blanco);
}
.nombre-sitio {
    font-weight: 400;
    text-align: center;
    font-size: 5rem;
    text-shadow: 0px 0px 10px #ffffff;

}
@media (min-width: 768px) { 
    .nombre-sitio {
        font-weight: 300;
        font-size: 7rem;
    }
}
.nombre-sitio span {
    font-weight: 900;
}
@media (min-width: 768px) { 
    .barra {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
}
.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.telefonos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: var(--separacion);
}
@media (min-width: 768px) { 
    .telefonos {
        flex-direction: row;
        justify-content: center;

    }
}

.telefono {
/* AS */
}
.telefono::before {
    content: 'telefono ►';
}
.whatsapp {

}


@media (min-width: 768px) { 
    .contacto {
        align-items: flex-end;
    }
}
.header a {
    color: var(--blanco);
    font-size: 2.0rem;
}
.navegacion {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--separacion);
}
@media (min-width: 768px) { 
    .navegacion {
        flex-direction: row;
    }
}
.navegacion a {
    padding: 1rem 2rem;
    transition-property: background-color;
    transition-duration: 300ms;
}
.navegacion a:hover {
    background-color: rgb(255, 255, 255, .5 );
}

.slogan {
    display: grid;
    grid-template-columns: 2fr;
}
.slogan h1, .slogan p {
    grid-column: 2 / 3;
}

/* ICONOS */
.iconos {
    padding: var(--separacion) 0;
}
@media (min-width: 768px) { 
    .iconos {
        display: flex;
        gap: 2rem;
    }
}
.icono {
    text-align: center;
    margin-bottom: calc( var(--separacion) / 2) ;
}
.icono:last-of-type {
    margin:0;
}
@media (min-width: 768px) { 
    .icono {
        margin: 0;
    }
}
.icono img {
    width: 5rem;
    margin: 0 auto;
}
.icono h3 {
    color: var(--primario);
    text-transform: uppercase;
    margin-top: calc( var(--separacion) / 2 ) ;
}
/** Sobre Stream**/

.sobre-stream {
    margin-top: var(--separacion);
    background-image: linear-gradient( to bottom, transparent 50%, var(--primario) 0% ), url(../img/negocios-1.jpg);
    background-position:center  top;
    background-repeat: repeat, no-repeat;
    background-size: 100%, 110rem;
    height: 47rem;
}
    @media (min-width: 768px) {
        .sobre-stream {
            background-image: linear-gradient( to left, transparent 50%, var(--primario) 0% ), url(../img/negocios-1.jpg);
            background-position:right top ;
            background-repeat: repeat, no-repeat;
        }
    }
    @media (min-width: 1600px) {
        .sobre-stream {
            background-size: 100%, 210rem;
        }
    }
    .sobre-stream-grid {
        display: grid;
        grid-template-rows: repeat(2, 35rem);
        row-gap: var(--separacion);
    }
    
    @media (min-width: 768px) { 
        .sobre-stream-grid {
            grid-template-rows: unset;
            row-gap: unset;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 4rem;
            padding: calc( var(--separacion ) * 2) 0;
        }
    }
    
    .texto-sobre-stream {
        grid-row: 2 / 3;
        color: var(--blanco);
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding-top: 1rem;
        padding-bottom: var(--separacion);
    }
    @media (min-width: 768px) { 
        .texto-sobre-stream {
            padding-bottom: 0;
        }
    }
    .texto-sobre-stream h2 {
        font-size: 4rem;
    }
    .texto-sobre-stream p {
        font-size: 2rem;
        line-height: 2;
    }
    

/** Main **/
.servicios {
    padding: var(--separacion) 0;
}
.header-servicios {
    font-size: 5rem;
    margin-bottom: var(--separacion);
}
.listado-servicios {
    display: grid;
    gap: 4rem;
}
@media (min-width: 768px) { 
    .listado-servicios {
        grid-template-columns: repeat(3, 1fr);
    }
}
.servicio {
    /* margin-top: 1rem; */
    margin: 0 3rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--blanco);
    padding: 1rem;
    transition-property: padding;
    transition-duration: 200ms;
}
@media (min-width: 768px) { 
    .servicio:hover {
        padding:0;
    }
}
.servicio .titulo {
    display: block;
    margin: 0;
    padding: 0;
    background-color: var(--primario);
    color: var(--blanco);
    text-align: center;
}
.servicio .contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contenido p {
    line-height: 2;
    margin: 2rem;
}

.servicio .precio {
    margin-top: 1rem;    
    font-size: 3rem;
    font-weight: 900;
}
.servicio .precio::before {
    content: '$';

}
.servicio button {
    height: 5rem;
    font-size: 2rem;
    background-color: var(--primario);
    color: var(--blanco);
    border:none;
    border-bottom-right-radius: .5rem;
    font-weight: 900;

}
/* rgba(59,130,246,.5) */
.servicio button:hover {
    background-color: #064d7f;
}


/** Footer **/
.site-footer {
    
    border-top: 1px solid #e1e1e1;
    margin-top: 5rem;
    padding-top: 5rem;
}
.site-footer h3 {
    margin-bottom: .5rem;
    text-align: center;
}
@media (min-width: 768px) { 
    .site-footer h3 {
        text-align: left;
    }
    .grid-footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.grid-footer > div {
    margin-bottom: 2rem;
}
@media (min-width: 768px) { 
    .grid-footer > div {
        margin: 0;
    }
}


.footer-menu a {
    display: block;
    text-align: center;
    font-weight: 600;
    
}
@media (min-width: 768px) { 
    .footer-menu a {
        text-align: left;
        font-weight: 400;
    }
}

.copyright {
    margin-top: 5rem;
    text-align: center;
}
