:root {
    --fuenteHeading: 'PT Sans', sans-serif;
    --fuenteParrafos: 'Open Sans', sans-serif;

    --primario: #784D3C;
    --claro: #e1e1e1;
    --blanco: #ffffff;
    --negro: #000000;

}

html {
    box-sizing: border-box;  /* Para que el border, padding.. etc no afecten al ancho de los elementos*/
    font-size: 62.5%;  /*1rem = 10px*/
}

*, *:before, *:after {
    box-sizing: inherit; /*Hereda del padre (html) si lo utiliza de otro selector hereda al siguiente*/
}

body {
    font-family: var(--fuenteParrafos);
    font-size: 1.6rem;
    line-height: 2; /*separacion entre las lineas de los parrafos, en blog es recomendable para una mejor lectura*/
}


/*GLOBALES*/

.contenedor {
    max-width: 120rem;
    width: 90%;
    margin: 0 auto; /*para centrar el contenido horizontalmente */
}

a {
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: var(--fuenteHeading);
    line-height: 2;  /*espacio de interlineado*/
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.8rem;
}

img {
    max-width: 100%;
}


/** Utilidades **/

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.centrar-texto {
    text-align: center;
}

/* HEADER */

.header {
    background-image: url(../img/banner.jpg);
    height: 60rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /*doble center porque se centra vertical y horizantalmente*/
    
}

.header__texto {
    text-align: center;
    color: var(--blanco);
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .header__texto {
        margin-top: 15rem;
    }
}

.barra {
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .barra {
        display: flex;
        justify-content: space-between;  /*alinear horizontalmente*/
        align-items: center;  /*alinear verticalmente*/
    }
}

.logo{
    color: var(--blanco);
}

.logo__nombre {
    font-weight: 700;
}

.logo__bold{
    font-weight: normal; /*como la negrita*/
}

@media (min-width: 768px) {
    .navegacion {
        display: flex;
    }
}

.navegacion__enlace {
    display: block; /*para que no esten uno lado de otro si no, uno abajo de otro*/
    text-align: center;
    font-size: 1.8rem;
    color: var(--blanco);
    padding: 1rem;
}

@media (min-width: 768px) {
    .contenido-principal {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 4rem;
    }
}

.entrada {
    border-bottom: 1px solid var(--claro);
    margin-bottom: 2rem;
}

.entrada:last-of-type {    /*la ultima entrada*/
    border: none;
    margin-bottom: 0;
}

.boton {
    display: block; /*para que en moviles ocupe todo el espacio disponible*/
    font-family: var(--fuenteHeading);
    color: var(--blanco);
    text-align: center;
    padding: 1rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    border: none;
}

@media (min-width: 768px) {
    .boton {
        display: inline-block; /*inline: solo seria inmune al margin y width
        inline-block: toma el espacio que requiere y respeta el display block*/
        
    }
}

.boton:hover {
    cursor: pointer;
}

.boton--primario {
    background-color: var(--negro);
}

.boton--secundario {
    background-color: var(--primario);
}

.cursos {
    list-style: none;
}

.widget-curso {
    border-bottom: 1px solid var(--claro);
    margin-bottom: 2rem;
}

.widget-curso:last-of-type {
    border-bottom: none;
}

.widget-curso__label {
    font-family: var(--fuenteHeading);
    font-weight: 700;
}

.widget-curso__info {
    font-weight: 400;
}

.widget-curso__label, 
.widget-curso__info {
    font-size: 2rem;
}


/*Footer*/

.footer {
    background-color: var(--negro);
    padding-bottom: 3rem;
    margin-top: 4rem;
}



/* // Sobre nosotros // */

@media (min-width: 768px) {
    .sobre-nosotros {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}


/* // Cursos // */

.curso {
    padding: 3rem 0;
    border-bottom: 1px solid var(--claro);
}

@media (min-width: 768px) {
    .curso {
        display: grid;
        grid-template-columns: 1fr 2fr;
        column-gap: 2rem;
    }
}

.curso:last-of-type {
    border: none;
}

.curso__label {
    font-family: var(--fuenteHeading);
    font-weight: 700;
}

.curso__info {
    font-weight: 400;
}

.curso__label, 
.curso__info {
    font-size: 2rem;
}


/*// Contacto // */

.contacto-bg {
    background-image: url(../img/contacto.jpg);
    height: 40rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.formulario {
    background-color: var(--blanco);
    margin: -5rem auto 0 auto;
    width: 95%;
    padding: 5rem;
}

.campo {
    display: flex;
    margin-bottom: 2rem;
}

.campo__label {
    flex: 0 0 9rem;
    text-align: right;
    padding-right: 2rem;
}

.campo__field {
    flex: 1;
    border: 1px solid var(--claro);
}

.campo__field--textarea {
    height: 20rem;
}