@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
}

:root {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: #F2F4F4;
}

/* Estilos de Cabecera */
header img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.img-nav{
  position: fixed;
  top: 4px;
  left: 20px;
  width: 60px; 
  height: 60px; 
  z-index: 20;
  background-color: transparent;
  border-radius: 50%; 
   box-shadow: inset 0 0 3px 2px rgba(0, 0, 0, 0.6);
}

.img-nav:hover{
  cursor: pointer;
}

/* Tipografía */
.sitio h2, .sub-titulo {
    font-weight: 300;
}

.sub-titulo {
    font-size: 2.2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #8E44AD;
}

/* Estilos de Main */
main {
    padding: 20px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Secciones */
section {
    margin-bottom: 20px;
    background-color: #FCF3FF;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Contenedor de Título */
.contenedor_titulo {
  	width: 80%;
    text-align: center;
  	margin: auto;
}

.titulo-principal {
    font-size: 3em;
    font-weight: 300;
    color: #4A235A;
    margin: 25px 0;
}

.texto-titulo {
    font-weight: 200;
    font-size: 1.4em;
    max-width: 95%;
    color: #4A235A;
    margin: 0 auto;
}

/* Introducción */
.introduccion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    background-color: #FCF3FF;
}

.texto-intro {
    padding: 1rem;
    font-size: 1.2em;
}

.img-portada {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

.nombre-atenas {
    font-weight: 100;
    color: #EDC11B;
    margin-top: 50px;
    margin-left: 600px;
    font-size: 8em;
    font-family: 'Symbol';
    position: absolute;
    z-index: 99;
}

.sitio-intro {
    background-color: #fff;
    border: 1px solid #D2B4DE;
    border-radius: 8px;
    margin: 1rem;
    padding: 1rem;
    width: 1200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

/* Contenedor de Sitios */
#contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.texto {
    line-height: 1.4;
    color: #401350;
  	text-align: left;
}

.sitio {
    background-color: #fff;
    border: 1px solid #D2B4DE;
    border-radius: 4px;
    margin: 1rem;
    padding: 1rem;
    width: 600px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.sitio img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

.cursiva {
    font-style: italic;
}

/* Botones de Retorno */
#botones_retornos {
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
}

#botones_retornos a {
    display: flex;
}

footer {
    background-color: #764BA2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 0.9em;
    padding: 3%;
    width: 100%;
    bottom: 0;
}

/* Estilos Responsivos */

/* Pantallas Pequeñas */
@media only screen and (max-width: 600px) {
  
    .nombre-atenas {
        font-size: 3em;
        margin-top: 10px;
        margin-left: 170px;
    }

    main {
        padding: 8px;
    }
  
  .contenedor_titulo { 
   width: 85%;
	}

  .titulo-principal {
    	font-size: 2em;
    	margin: 50px 10px;
	}
  
    #contenedor {
        width: 100%;
        padding: 0.3rem;
    }

    footer {
        font-size: 0.7em;
        padding: 30px;
    }

    .img_flechas {
        margin-top: 40px;
        height: 30px;
    }

    .introduccion {
        padding: 0.2rem;
    }

    .sitio {
        width: 98%;
    }
}

/* Pantallas Medianas */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  
    .nombre-atenas {
        font-size: 4.5em;
        margin-top: 30px;
        margin-left: 400px;
    }
  
    .titulo-principal { 
        font-size: 2.1em;
    }

    footer {
        font-size: 0.8em;
        padding: 40px;
    }

    .img_flechas {
        margin-top: 25px;
        height: 35px;
    }
}

/* Pantallas Grandes (PC de sobremesa) */
@media screen and (min-width: 1380px) {
    #contenedor {
        margin: 0 auto;
        width: 95%;
    }

    .sitio-intro {
        width: 90%;
    }

    .sitio {
        margin: 1rem;
        padding: 1rem;
        width: 45%;
    }
}
