@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'OwenPro-SemiBold';
    src: url("../../fonts/Owen Pro/OwenPro-SemiBold.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OwenPro-Medium';
    src: url("../../fonts/Owen Pro/OwenPro-Medium.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OwenPro-Regular';
    src: url("../../fonts/Owen Pro/OwenPro-Regular.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

:root {
    --aqua: #00A0AF;
	--verde: #8DBB00;
	--negro: #000000;
	--gris: #1F242D;
	--owenPro-600: 'OwenPro-SemiBold';
	--owenPro-500: 'OwenPro-Medium';
	--owenPro-400: 'OwenPro-Regular';
}
.container__servicio{
	height:auto;
	width: 100%;
}
.container__text-servicio {
    text-align: center;
    padding: 3% 11% 2% 11%;
}
.container__text-servicio h1{
	font-family: var(--owenPro-600);
	color: var(--aqua);
	font-size: 1.75rem;
	margin-bottom: 0px;
}
.container__text-servicio p{
	font-family: var(--owenPro-500);
	color: var(--gris);
	margin-top: .5rem;
	text-wrap: pretty;
}
.container__imagenes-servicio {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	min-height: 23rem;
}
.container__service-content{
	position: relative;
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.container__service-content:hover {
     transform: scale(1.2);
}
.container__imagenes-servicio h2{
	font-family: var(--owenPro-400);
	font-size: 1.563rem;
	color: var(--gris);
	text-wrap: pretty;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}
.container__image-icon{
	height: 90px;
}
#soporte{
	background-color: #F5F5F7;
	align-content: center;
}
#servicio{
	background-color: #E3E9EA;
	align-content: center;
}
#centros{
	background-color:#B2C5C7;
	align-content: center;
}
#preguntas{
	background-color: #A3B8BA;
	align-content: center;
}
.slide--service {
  padding: 5% 12%;
  transition: box-shadow 0.3s ease, filter 0.3s ease; /* Transición suave */
}

.slide--service:hover {
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8); /* Brillo en el borde */
}

@media screen and  (max-width: 690px) {
.swiper {
  width: 100vw;
  height: auto;
}
	
#soporte, #servicio, #centros, #preguntas  {
	width: 100%;
	height: auto;
	padding: 0;
}
.container__service-content {
    position: relative;
    text-align: center;
    margin: 20% 0;
    height: 170px;
}
.container__text-servicio {
    padding: 8% 5%;
}
.container__text-servicio p {
   font-size: 1rem;
}
}