/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografías */
body {
    font-family: 'Open Sans', sans-serif;
    color: #444444;
	  font-size: 1.4rem;  /* Tamaño base más grande */
    line-height: 1.8;   /* Espaciado entre líneas para mejor lectura */
}

/* Cabezal */
header {
    background-color: #125794;
    padding: 40px 40px;
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
}

/* Portada */
.cover-image {
    background-image: url('images/cover.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.cover-image-2 {
    background-image: url('images/cover2.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}	
	.cover-image-3 {
    background-image: url('images/cover3.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

	.cover-image-4 {
    background-image: url('images/cover4.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

	.cover-image-5 {
    background-image: url('images/cover5.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

	.cover-image-6 {
    background-image: url('images/cover6.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

	.cover-image-7 {
    background-image: url('images/coverp.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

	.cover-image-8 {
    background-image: url('images/coverm.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

/* Caja de texto */
.text-box {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.text-box h1.highlight {
    font-family: 'Fredoka', sans-serif;
    font-size: 5rem;
	font-weight: 900;
    color: #d7eced; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	 text-align: center; /* 👈 Esto lo centra */
}

.text-box h1.highlight2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #e7e7b7; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #b7a6ca; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #e9c5b2; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #c2e0ca; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight6 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #f7c4d2; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight7 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #e8b66f; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h1.highlight8 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #7dc4ce; /* Puedes cambiar este color manualmente */
    margin-bottom: 20px;
	
	}

.text-box h2 {
    font-size: 2rem;
    margin-top: 30px;
    color: #222;
}

.text-box h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #555;
}

.text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Galería */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 20px;
	 max-width: 1200px; /* ancho máximo de la galería */
    margin: 0 auto;     /* centrado horizontal */
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .text-box h1.highlight {
        font-size: 2rem;
    }

    .text-box h2 {
        font-size: 1.5rem;
    }

    .text-box h3 {
        font-size: 1.2rem;
    }
	
	.boton-flotante {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #125794;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 44px 66px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
		Texto: INICIO
}

.boton-flotante:hover {
    background-color: #0f4a7d;
}
	
	

}
