@font-face {
    font-family: 'CaviarDreams'; /* Le das un nombre a tu fuente */
    src: url('../fonts/CaviarDreams.ttf') format('truetype');
    font-weight: normal; /* O 'bold', '300', etc., si tienes diferentes pesos */
    font-style: normal;  /* O 'italic' si tienes una versión itálica */
    font-display: swap; /* Importante para el rendimiento: le dice al navegador cómo manejar la carga de la fuente */
}
@font-face {
    font-family: 'eurosti'; /* Le das un nombre a tu fuente */
    src: url('../fonts/eurosti.ttf') format('truetype');
    font-weight: normal; /* O 'bold', '300', etc., si tienes diferentes pesos */
    font-style: normal;  /* O 'italic' si tienes una versión itálica */
    font-display: swap; /* Importante para el rendimiento: le dice al navegador cómo manejar la carga de la fuente */
}
*{box-sizing:border-box;margin:0px auto;padding:0;}
body{font-family:eurosti,Calibri,Sans-serif;font-weight:normal;background:#ffffff;}
h1{font-size:3em;}h2{font-size:2.3em;}h3{font-size:2em;}h4{font-size:1.8em;display:inline-block;border-bottom:3px solid #7ff1f3;}
h1,h2,h3,h4,p,li{line-height:1.3em;margin-bottom:1.1em;}
p,li{font-size:1.3em;}li{list-style:inside;margin-left:20px;}
a{color:#4cabad;text-decoration:none;}a:hover,a:active{text-decoration:underline;}
img{border:none;max-width:100%;height:auto;}.none{text-transform:none;}.hide{display:none;}
.d50{width:47%;}.d33{width:32%;}.d25{width:22%;}.d20{width:17.5%;}
.d50,.d33,.d25,.d20{vertical-align:top;display:inline-block;margin:30px 1%;padding:20px;box-sizing:border-box;}
.inline li{display:inline-block;}hr{margin:30px 0px;}
.center{text-align:center;}.left{text-align:left;}.right{text-align:right;}
.resaltado{font-weight:bolder;text-decoration: underline;}
.sombra{box-shadow: 0 8px 12px rgba(100, 100, 100, 0.45);}
.boton {display:inline-block;background-color:#7ff1f3;padding:12px 32px;border-radius:50px;margin:20px auto;
color:#1a1a1a;border:2px solid transparent;position:relative;overflow:hidden;}
.boton:hover {transform:translateY(-2px);box-shadow:0 8px 25px rgba(127, 241, 243, 0.4);background:linear-gradient(135deg, #5ce1e6 0%, #4dd4d9 100%);
border-color:rgba(255, 255, 255, 0.2); text-decoration: none;}
.separador{border-top:2px solid #cccccc;clear:both;margin:60px 0px;}
.fondo{background:#30b2b4;color:#f3f3f3;}
.fondonegro{background:#000000;color:#f3f3f3;}
.circulo{width:50px;height:50px;background:#232323;color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.3em;font-weight:700;
margin:20px auto;position:relative;z-index:2;}
.textocian{color:#77dde0;font-weight: bold;}
/*CABEZA*/
#cabeza{text-align:left;border-bottom:2px solid #d2d3d3;}
#cabeza img{margin:20px;width:200px; }
/*CUERPO*/
#cuerpo{margin:0 auto;text-align:center;}
.contenido{padding:50px;}
.contenido1{background:#caf4f5;text-align:left;margin:30px auto;padding:30px;width:96%;border:2px solid #2da8aa;box-shadow:0 10px 25px rgb(93 78 55 / 10%);border-radius:15px;}
.contenido2{background:#f3f3f3;box-shadow: 0 8px 12px rgba(100, 100, 100, 0.45);filter: sepia(20%) contrast(1.1) brightness(1.1);border:1px solid #e2e2e2; border-radius:10px;vertical-align:top;}
.contenido2 h2{color:#f3f3f3;}
.contenido2 h3{color:#4cabad;font-size:2em;}
.contenido2 p{color:#000000;}
.listacontenido li{width: 360px;
vertical-align: top;
display: inline-block;
padding: 30px 15px;
border-radius: 10px;
margin: 20px;
border: 1px solid #c2c2c2;box-shadow: 0 8px 12px rgba(100, 100, 100, 0.45);}
/*presentacion*/
#presentacion {background:#f0f0f0;text-align:left;}
#presentacion  .d50{vertical-align:middle;padding:0px 20px;}
/*indice*/
#indice li{display:inline-block;width:40%;border-radius:15px;text-align:center;transition:all 0.3s ease;
font-size:1.8em;border:1px solid rgba(100, 100, 100, 0.5);margin:30px;}
#indice li  a{display:inline-block;color:#77dde0;width:100%;padding: 30px 12px;}
/*somos*/
#somos{font-family:CaviarDreams,eurosti,Calibri;}
#somos img{border:1px solid #c3c3c3;margin-bottom:20px;}
#somos h3{font-size:1.5em;text-align:center;}
#somos h3 span{display:block;color:#4cabad;}
/*Preguntas*/
#preguntas{text-align:left;}
.acordeon-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}
.acordeon-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.acordeon-header {
    background:#26a1a3;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
 }
.acordeon-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
}
.acordeon-header:hover::before {
    left: 100%;
}
.acordeon-titulo {
    font-size: 1.5em;
    color: #ffffff;
    flex: 1;
	margin:10px 0px;
    text-align: left;
}
.acordeon-icono {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4cabad, #2d9294);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
}
.acordeon-icono::before,
.acordeon-icono::after {
    content: '';
    position: absolute;
    background: white;
    transition: all 0.3s ease;
}
.acordeon-icono::before {
    width: 12px;
    height: 2px;
}
.acordeon-icono::after {
    width: 2px;
     height: 12px;
 }
.acordeon-item.active .acordeon-icono {
	transform: rotate(45deg);
}
.acordeon-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	background: #fafbfc;
}
.acordeon-item.active .acordeon-content { 
	max-height: 900px;
	padding: 25px;
}
.acordeon-texto {
	color: #4b5563;
	line-height: 1.7;
}
/*tabla*/
table{
    width:94%;
    border-collapse:collapse;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.1);
    margin:50px auto;
	font-size:1.2em;
}
table thead{
	background:linear-gradient(135deg, #4cabad, #2d9294);
}
table th {
    padding:20px;
    color:white;
}
table tbody tr {
    border-bottom:1px solid #e2e8f0;color: #2d3748;
}
table td {
    padding:20px;
}
.tabla-categoria td{
	background-color:#ebebeb;
	border-bottom:1px solid #c3c3c3;
}
.tabla-servicio {
    position:relative;
	text-align:left;
}
.tabla-servicio::before {
    content:'●';
    color:#4cabad;
    margin-right:10px;
}
/*CONTATO*/
#iconos li{list-style:none;}
#iconos li span{vertical-align:middle;margin-right:10px;}
.iconotelefono{background:url("../img/iconos/telefono.png") no-repeat;}
.iconoemail{background:url("../img/iconos/email.png") no-repeat;}
.iconomapa{background:url("../img/iconos/mapa.png") no-repeat;}
.iconoweb{background:url("../img/iconos/web.png") no-repeat;}
.iconofacebook{background:url("../img/iconos/facebook.png") no-repeat;}
.iconoinstagram{background:url("../img/iconos/instagram.png") no-repeat;}
.iconowhatsapp{background:url("../img/iconos/whatsapp.png") no-repeat;background-size:20px 20px;background-position:center;display:inline-block;padding:18px;}
.icono{background-size:25px 25px;background-position:center;display:inline-block;padding:18px;}
.mapa{text-align:center;}
.mapa iframe{max-width:96%;height:340px;}
/*LISTA*/
.lista li{width:400px;display:inline-block;border-bottom:1px solid #999;}
/*Diseño Web*/

/*PIE*/
#pie{background-color:#111111;border-top:1px solid #2e2e2e;margin-top:30px;text-align:center;}
#whatsapp-pie{position:fixed;bottom:12px;right:5px;z-index:9;}
#pielista .d25{padding:40px 10px;}
#pielista ul li{display:block;list-style-type:none;padding:1px;color:#d2d0d0;margin:0px;line-height:2em;}
#pielista ul li a{color:#4cabad;}
#pielista h4{color:#a3a4a5;}
#pie p{color:#d2d0d0;margin:0px;padding:15px 0px;}
#piefinal{border-top:1px solid #333;padding-top:1.5rem;color:#999;}
/*MEDIA*/
@media screen and (max-width:1500px){
.d20{width:31%;}
}		
@media screen and (max-width:1200px){
.d25,.d20{width:46%;}
}	
@media screen and (max-width:1000px){
.contenido{padding:50px 20px;}
.contenido1{padding:30px 10px;margin:40px auto;width:100%;border:none;}
.d50,.d33,.d25,.d20,#diferentes li,table{width:98%;}
#indice{padding:40px 20px;}
#indice li{margin:10px 0px;padding:10px;width:100%;}
#indice li a{padding:10px;}
#diferentes li{margin:50px 0px;}
.tarjeta{width:94%;}
.flex {width: 95%;flex-direction: column; /* Apila los divs verticalmente en pantallas pequeñas */}
.flex1 {margin: 10px 0;width: 100%;}
}
@media screen and (max-width:600px){
#iconos li{font-size:1.5em;border-bottom:1px solid #cccccc;padding:10px 0px;}
li{/*margin-left:0px;*/}
.lista li{width:100%;display:block;}
}
@media screen and (max-width:480px){
.contenido{padding:50px 10px;}
.lista li,#servicios div{width:98%;display:block;}
ul li{margin-left:0px;}
h1{font-size:2em;}h2{font-size:2em;}h3{font-size:1.8em;}h4{font-size:1.6em;}
#indice li{font-size:1.4em;}
#iconos li {font-size:1.3em;}
}
@media screen and (max-width:320px){
h1{font-size:1.8em;}h2{font-size:1.6em;}h3{font-size:1.4em;}h4{font-size:1.3em;}
p,li{font-size:1.2em;}#cabeza a{font-size:1.8em;}
}