body {
	color: #443213;
	font-family: 'Georgia', serif;
}


/* También puedes aplicar color a enlaces y encabezados si usas estilos específicos */

a {
	color: #443213;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span {
	color: #443213;
}

.home-hero {
	background: url('assets/hero.png') no-repeat center center/cover;
	height: 100vh;
	position: relative;
	color: #443213;
	/* nuevo color de tipografía */
	font-family: 'Georgia', serif;
}

.home-overlay {
	background-color: rgba(255, 255, 255, 0.6);
	/* blanco semitransparente encima */
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-text {
	position: absolute;
	bottom: 30px;
	right: 50px;
	background-color: rgba(255, 255, 255, 0.7);
	/* fondo blanco semitransparente */
	padding: 20px 30px;
	border-radius: 8px;
	text-align: right;
}

.hero-text h1 {
	margin: 0;
	font-size: 2.5rem;
	color: #443213;
	/* aplicado al título también */
}

.hero-text p {
	margin: 5px 0 0;
	font-size: 1.2rem;
	color: #443213;
	/* aplicado al párrafo */
}

.hero-header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 1rem;
	z-index: 999;
	/* para que esté encima del contenido */
}

.section-title {
	font-size: 2rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.testimonial {
	font-style: italic;
	background-color: #eee;
	padding: 1.5rem;
	border-left: 5px solid #ccc;
	margin: 2rem 0;
}

footer {
	background-color: #f8f9fa;
}

.navbar-logo {
	margin-top: 10%;
	width: 33%;
	height: auto;
	margin-right: 60%;
}

.hero-header h1 {
	font-size: 1.5rem;
	margin: 0;
}

.transparent-container {
	background-color: rgba(0, 0, 0, 0.6);
	/* negro con 60% de opacidad */
	padding: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 20px;
	color: #fff;
	/* texto blanco para contraste */
}

.servicios {
	background-color: #eee;
	padding: 60px 0;
	position: relative;
}

.servicios-foto {
	width: 100%;
	height: 55%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}
.service-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.overlay {
  background-color: rgba(255, 255, 255, 0.85); /* Blanco translúcido */
  padding: 60px 20px;
  width: 100%;
  height: 100%;
}

.servicios-info {
	flex: 1 1 60%;
	padding: 20px;
}

.servicios-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: #e9e3e3e6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.service-icons {
  width: 30%;
}

.service-icons {
  width: 30%;
}
.servicio-iconos {
  width: 100%;
  display:flex;
  justify-items: center;
}
.icon-service {
  width: 35%;
}

.service-box i {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
	color: #8b2c2b;
}

.service-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.servicios-lateral {
	flex: 1 1 40%;
	padding: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contacto h3 {
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.contacto p {
	margin: 4px 0;
	color: #444;
}

.social-icons  {
	width: 15%;
}

.form-icons  {
	width: 15%;
}


#nosotros {
  background: url('img/nosotros-fondo.jpg') no-repeat center center/cover;
  color: #443213;
  padding: 60px 20px;
}

#nosotros .overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 10px;
}

.historia-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.historia-contenido {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.historia-texto {
	font-size: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.historia-box {
  background-color: #e9e3e3e6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.historia-imagen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0; /* Para que quede alineado con los box */
}

.img-fundadora {
  background: url('assets/fundadora.jpg') no-repeat center center/cover;
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%; /* redonda */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sombra tenue */
  border: 4px solid #fff; /* opcional para destacar sobre fondo blanco translúcido */
}

.nombre-fundadora-box {
  margin-top: 16px;
  background-color: #e9e3e3e6;; /* fondo blanco semitransparente */
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 260px;
}

.nombre-fundadora {
  margin: 0;
  font-size: 1.1rem;
  color: #443213; /* tu color institucional */
  font-weight: 600;
}

.quote {
	font-style: italic;
	font-size: 14px;
	color: #555;
	margin-top: 20px;
}
.uniform-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.image-container {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.image-overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  padding: 8px 0;
  font-weight: bold;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}



@media (max-width: 768px) {
	.overlay {
		flex-direction: column;
		padding: 20px;
	}
	.grid {
		grid-template-columns: 1fr;
	}
}
