/* General */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
}

/* Hero principal */
header.hero {
  background: linear-gradient(to bottom, #6a8f99, #4d737c);
  color: white;
  height: 100vh;
  position: relative;
  text-align: center;
}

/* Logo centrado en el hero */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 260px;
  width: 90%;
  height: auto;
}

/* Frase al 5% del fondo */
.hero-phrase {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #e9ded9;
  width: 90%;
}

/*********************/

.about {
  height: 100vh; /* Ocupa toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('img/services-bg.png'); /* Imagen de fondo */
  background-size: 101% 101%;
  background-repeat: no-repeat;
	background-position: center center;
  padding: 20px;
  color: white; /* Asegura legibilidad si el fondo es oscuro */
  font-size: 1.5rem; /* Tamaño de fuente ajustado */
	border-top: solid 4px #e9ded9;
}
.about p {
	padding:20% 25%;
	color:#6a8f99;
}

/********************

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}*/
h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 40px;
  color: #b55c69;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
	padding: 0 0 20px 0;
  color: #6a8f99;
	border-bottom: 2px solid #6a8f99;
}


/******* boton ***********/

a.boton:link, a.boton:visited {
	margin: 150px 20px;
	padding:20px 30px;
	text-decoration: none;
	background: #6a8f99;
	color:#fff;
	width: 20;
	border-bottom:solid 5px #fff;
	border-right:solid 5px #fff;
	line-height: 150px;
	
}
a.boton:hover {
	background:#b55c69;
	color:#fff;
	border:none;
	border-top:solid 5px #e9ded9;
	border-left:solid 5px #e9ded9;
}

/*******************************/

footer.contact {
  background-color: #cca2a2;
  background-image: url('img/services-bg.svg'); /* Imagen de fondo */
  background-position:-10px 2px;
  background-repeat: no-repeat;
  background-size: 35%;
font-size: 20px;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .team .members {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 1.5em;
  }

  .hero-content p {
    font-size: 1em;
  }
	.about {
    font-size: 15px;
		/*background-image: none;*/
		  background-color: #e9ded9; /* Fondo suave para contraste */
		height:auto;
  background-size: 110% 101%;
		border: none;
	}
	.about p {
			padding:20% 5%;

	}
a.boton:link, a.boton:visited {
padding: 15px 20px;
		line-height: 80px;
	}
footer.contact {
  background-size: 65%;
}
	
}
