/*--- Limpiando estilos ---*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif ;
}
/*--- estilos del body ---*/
body{
	background-color: #ffffff;
	color: #333;
	line-height: 1.6;
}
a{text-decoration: none; color: inherit;}
ul{list-style-type: none;}

/*--- Header y Menu ---*/
header{
	background: #fff;
	padding: 1rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.logo img{
	height: 50px;
	width: auto;
	display: block;
}
/*.logo{
	font-size: 1.5rem;
	font-weight: bold;
	color: #555;
	letter-spacing: 1px;
}*/
nav ul{
	display: flex;
	gap: 20px;
}
nav a{
	font-size: 0.95rem;
	font-weight: 500;
	color: 666;
	transition: color 0.3s;
}
nav a:hover{color: #000;}
/*--- Portada ---*/
.hero{
	height: 80vh;
	background: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}
.hero-content h1{
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 300;
	color: #222;
}
.hero-content p{
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.btn{
	padding: 12px 30px;
	border: 1px solid #333;
	background: transparent;
	color: #333;
	cursor: pointer;
	transition: all 0.3s;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 2px;
}
.btn:hover{
	background: #333;
	color: #fff;
}
/*--- Barra de iconos ---*/
.icon-bar{
	display: flex;
	justify-content: space-between;
	padding: 3rem 10%;
	background: #fff;
	flex-wrap: wrap;
}
.icon-item{
	text-align: center;
	flex: 1;
	min-width: 200px;
	margin: 10px;
}
.icon-circle{
	width: 60px;
	height: 60px;
	background: #f9f9f9;
	border-radius: 50%;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 1.5rem;
}
.icon-item h3{
	font-size: 1rem;
	font-weight: 600;
	color: #444;
}
/*--- Sección nosotros ---*/
.about-section{
	display: flex;
	flex-wrap: wrap;
	padding: 4rem 10%;
	background: #fafafa;
	align-items: center;
}
.about-text{
	flex: 1;
	padding-right: 40px;
	min-width: 300px;
}
.about-image {
	flex: 1;
	height: 300px;
	background: #ddd; /* Simulación de imagen */
	min-width: 300px;
}
.section-tittle{
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #333;
	position: relative;
}
/*--- Linea decorativa ---*/
.section-title::after {
    content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: #999;
	margin-top: 10px;
}
/*--- Servicios detallados ---*/
.services-detail {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.service-card {
    padding: 20px;
    border-left: 1px solid #eee;
}
.service-card h3 {
    margin-bottom: 1rem;
    olor: #2c3e50;
}
.service-card ul li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}
/*--- Footer ---*/
footer{
	background: #222;
	color: #aaa;
	padding: 3rem 10%;
	text-align: center;
	font-size: 0.9rem;
}
.footer-content{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	text-align: left;
}
.footer-col{
	margin-bottom: 20px;
}
.footer-col h4{
	color: #fff;
	margin-bottom: 15px;
}
.copyright{
	border-top: 1px solid #333;
	padding-top: 20px;
}


























