@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 80px;
}
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eef2f5;
    color: #173b5e;
}

.pagina {
    width: calc(100% - 80px);
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
}

.cabecera {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 80px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border-bottom: 1px solid #e2e7eb;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: #173b5e;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    color: #f26a21;
}

.inicio {
    position: relative;

    display: grid;
    grid-template-columns: 47% 53%;
    align-items: stretch;

    min-height: 430px;
    background: #ffffff;

    overflow: hidden;
}

.inicio-texto {
    position: relative;
    z-index: 2;

    padding: 75px 20px 65px 50px;
}

.inicio-imagen {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.inicio-imagen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.inicio-imagen::before {
    content: "";

    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 0;

    width: 120px;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
}

.inicio h1 {
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.05;
}

.inicio p {
    max-width: 500px;
    margin: 0;
    font-size: 19px;
    line-height: 1.5;
    color: #526574;
}
.inicio h1 span {
    color: #f26a21;
}

.inicio-ventajas {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 45px;
}

.ventaja {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #526574;
    font-size: 14px;
    line-height: 1.35;
}

.ventaja + .ventaja {
    padding-left: 25px;
    border-left: 1px solid #d9e0e5;
}

.ventaja-icono {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    color: #f26a21;
    border: 2px solid #173b5e;
    border-radius: 50%;

    font-size: 18px;
    font-weight: bold;
}
.ventaja-icono svg {
    width: 27px;
    height: 27px;
}
.btn-inicio {
    display: inline-block;
    margin-top: 28px;
    padding: 13px 24px;

    background: #f26a21;
    color: #ffffff;

    border-radius: 7px;
    text-decoration: none;
    font-weight: bold;
}

.btn-inicio:hover {
    background: #dc5815;
}
.boton-contacto:hover {
    background: #dc5815;
}

.servicios {
    padding: 55px 50px 70px;
    background: #f7f9fa;
}

.titulo-seccion {
    margin-bottom: 35px;
}

.titulo-seccion span {
    color: #f26a21;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.titulo-seccion h2 {
    margin: 8px 0 0;
    color: #173b5e;
    font-size: 32px;
}

.lista-servicios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.servicio {
    min-height: 115px;
    padding: 22px 25px;

    background: #ffffff;
    border: 1px solid #e4e9ed;
    border-radius: 8px;
}

.servicio h3 {
    margin: 12px 0 0;
    color: #173b5e;
    font-size: 17px;
}

.icono {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.icono svg {
    width: 44px;
    height: 44px;

    fill: none;
    stroke: #173b5e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icono svg .detalle {
    stroke: #f26a21;
}

.otros-servicios {
    margin-top: 28px;
    padding-top: 20px;

    border-top: 1px solid #dfe6eb;

    color: #526574;
    font-size: 15px;
    line-height: 1.6;
}

.otros-servicios span {
    color: #173b5e;
    font-weight: bold;
}
.quienes-somos {
    padding: 70px 50px;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: center;

    background: #ffffff;
}

.subtitulo {
    color: #f26a21;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.quienes-texto h2 {
    margin: 8px 0 25px;

    color: #173b5e;
    font-size: 32px;
}

.quienes-texto p {
    margin: 0 0 16px;

    color: #526574;
    font-size: 17px;
    line-height: 1.65;
}

.datos-empresa {
    margin-top: 28px;
    padding-top: 20px;

    border-top: 1px solid #e2e7eb;

    display: flex;
    flex-direction: column;
    gap: 7px;

    color: #526574;
    font-size: 14px;
}

.datos-empresa strong {
    color: #173b5e;
}

.quienes-imagen {
    overflow: hidden;
    border-radius: 9px;
}

.quienes-imagen img {
    display: block;
    width: 100%;
    height: 330px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}

.quienes-imagen:hover img {
    transform: scale(1.02);
}
.contacto {
    padding: 65px 50px 75px;
    background: #f7f9fa;
}

.contacto-cabecera {
    margin-bottom: 35px;
}

.contacto-cabecera h2 {
    margin: 8px 0 0;
    color: #173b5e;
    font-size: 32px;
}

.contacto-contenido {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
}

.contacto-datos {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 25px 35px;
}

.dato-contacto {
    display: flex;
    flex-direction: column;
    gap: 5px;

    color: #526574;
    font-size: 15px;
}

.dato-contacto strong,
.horario > strong {
    color: #173b5e;
    font-size: 15px;
}

.dato-contacto a {
    color: #526574;
    text-decoration: none;
}

.dato-contacto a:hover {
    color: #f26a21;
}

.horario {
    grid-column: 1 / -1;

    padding-top: 20px;
    border-top: 1px solid #dfe6eb;
}

.horario > strong {
    display: block;
    margin-bottom: 12px;
}

.horario div {
    display: flex;
    justify-content: space-between;

    margin-top: 7px;
    color: #526574;
    font-size: 14px;
}

.horario b {
    color: #173b5e;
}

.botones-contacto {
    grid-column: 1 / -1;

    display: flex;
    gap: 12px;

    margin-top: 5px;
}

.btn-contacto {
    padding: 12px 22px;

    background: #f26a21;
    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.btn-contacto:hover {
    background: #dc5815;
}

.btn-whatsapp {
    background: #173b5e;
}

.btn-whatsapp:hover {
    background: #0f2e49;
}

.btn-como-llegar {
    background: #ffffff;
    color: #173b5e;
    border: 1px solid #173b5e;
}

.btn-como-llegar:hover {
    background: #173b5e;
    color: #ffffff;
}

.contacto-mapa {
    min-height: 340px;
    overflow: hidden;
    border-radius: 9px;
}

.contacto-mapa iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
}


/* ==================================================
   RESPONSIVE TABLET
   ================================================== */

/* TABLET */
@media (min-width: 600px) and (max-width: 1024px) {

	/* CABECERA */

	.cabecera {
		flex-direction: column;
		align-items: center;
		gap: 14px;

		padding-top: 18px;
		padding-bottom: 18px;
	}

	.logo {
		width: 100%;
		text-align: center;
		white-space: nowrap;
	}

	.menu {
		width: 100%;
		justify-content: center;
		gap: 35px;
	}

	.menu a {
		white-space: nowrap;
	}
	.inicio {
        display: block;
        min-height: 0;
    }

    .inicio-texto {
        padding: 55px 50px 40px;
    }

    .inicio h1 {
        font-size: 46px;
        line-height: 1.05;
    }

    .inicio p {
        max-width: 600px;
        font-size: 18px;
    }

    .inicio-ventajas {
        display: flex;
        margin-top: 35px;
        gap: 15px;
    }

    .ventaja {
		gap: 8px;
        flex: 1;
    }

    .ventaja + .ventaja {
        padding-left: 15px;
    }

    .inicio-imagen {
        height: 330px;
    }

    .inicio-imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .inicio-imagen::before {
        display: none;
    }


	/* SERVICIOS */

	.servicios {
		padding: 45px 28px;
	}

	.servicios h2 {
		font-size: 32px;
	}

	.lista-servicios {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.servicio {
		min-height: 125px;
		padding: 18px;
	}

	.servicio h3 {
		font-size: 15px;
	}

	.servicio-icono {
		width: 40px;
		height: 40px;
	}

	.servicio-icono svg {
		width: 32px;
		height: 32px;
	}
	
	
	
	/* QUIÉNES SOMOS */

	.quienes-somos {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.quienes-texto {
		width: 100%;
	}

	.quienes-texto h2 {
		font-size: 34px;
		line-height: 1.1;
	}

	.quienes-texto p {
		font-size: 16px;
		line-height: 1.6;
	}

	.quienes-imagen {
		width: 100%;
	}

	.quienes-imagen img {
		width: 100%;
		height: auto;
		display: block;
	}
	
	/* CONTACTO */

	.contacto {
		padding: 45px 28px;
	}

	.contacto h2 {
		font-size: 34px;
		line-height: 1.1;
	}

	.contacto-contenido {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	/* Dirección / teléfono / WhatsApp / correo en 2 columnas */
	.contacto-datos {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px 30px;
	}

	.dato-contacto {
		min-width: 0;
	}

	.dato-contacto a {
		overflow-wrap: anywhere;
	}

	/* HORARIO */

	.horario {
		grid-column: 1 / -1;
	}

	.horario-fila {
		display: flex;
		justify-content: space-between;
		gap: 15px;
		margin-bottom: 10px;
	}

	.horario-fila strong {
		margin-top: 0;
	}

	/* BOTONES */

	.botones-contacto {
		display: flex;
		flex-wrap: nowrap;
		gap: 10px;
	}

	.botones-contacto a {
		flex: 1;
		padding: 11px 5px;
		font-size: 13px;
		text-align: center;
		white-space: nowrap;
	}

	/* MAPA */

	.contacto-mapa {
		width: 100%;
		min-height: 280px;
	}

	.contacto-mapa iframe {
		width: 100%;
		height: 280px;
	}
}
/* ==================================================
   RESPONSIVE MÓVIL
   ================================================== */

@media (max-width: 600px) {

    .pagina {
        width: calc(100% - 24px);
    }


    /* CABECERA */

    .cabecera {
        height: auto;
        padding: 18px 16px;

        display: block;
    }

    .logo {
        font-size: 18px;
        text-align: center;
        white-space: nowrap;
    }

    .menu {
        margin-top: 16px;

        display: flex;
        justify-content: center;
        gap: 18px;
    }

    .menu a {
        font-size: 12px;
        white-space: nowrap;
    }


    /* INICIO */

    .inicio {
        display: block;
        min-height: 0;
    }

    .inicio-texto {
        padding: 42px 28px 25px;
}


    .inicio h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .inicio p {
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-inicio {
        margin-top: 24px;
        padding: 13px 20px;
    }

    .inicio-ventajas {
        margin-top: 30px;
        display: block;
    }

    .ventaja {
        padding: 12px 0;
        font-size: 14px;
    }

    .ventaja + .ventaja {
        margin: 0;
        padding-left: 0;

        border-left: 0;
        border-top: 1px solid #d9e0e5;
    }

    .inicio-imagen {
        height: 240px;
    }

    .inicio-imagen::before {
        top: 0;
        bottom: auto;
        left: 0;

        width: 100%;
        height: 45px;

        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            rgba(255,255,255,0) 100%
        );
    }
	
	/* SERVICIOS */

.servicios {
    padding: 45px 28px;
}

.servicios h2 {
    font-size: 32px;
}

.lista-servicios {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.servicio {
    min-height: 125px;
    padding: 18px;
}

.servicio h3 {
    font-size: 15px;
}

.servicio-icono {
    width: 40px;
    height: 40px;
}

.servicio-icono svg {
    width: 32px;
    height: 32px;
}

	/* QUIÉNES SOMOS */

.quienes-somos {
    grid-template-columns: 1fr;
    gap: 28px;
}

.quienes-texto {
    width: 100%;
}

.quienes-texto h2 {
    font-size: 34px;
    line-height: 1.1;
}

.quienes-texto p {
    font-size: 16px;
    line-height: 1.6;
}

.quienes-imagen {
    width: 100%;
}

.quienes-imagen img {
    width: 100%;
    height: auto;
    display: block;
}
	/* CONTACTO */

.contacto {
    padding: 45px 28px;
}

.contacto h2 {
    font-size: 34px;
    line-height: 1.1;
}

.contacto-contenido {
    grid-template-columns: 1fr;
    gap: 35px;
}

.contacto-datos {
    grid-template-columns: 1fr;
    gap: 22px;
}
	
.dato-contacto {
    min-width: 0;
}

.dato-contacto a {
    overflow-wrap: anywhere;
}
/* Evita que el correo se salga de la pantalla */
.contacto-datos a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* HORARIO */

.horario {
    grid-column: 1;
}

.horario-fila {
    display: block;
    margin-bottom: 10px;
}

.horario-fila strong {
    display: block;
    margin-top: 3px;
}

/* BOTONES */
	
.botones-contacto {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.botones-contacto a {
    flex: 1;
    padding: 11px 5px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
}
	

/* MAPA */

.contacto-mapa {
    width: 100%;
    min-height: 280px;
}

.contacto-mapa iframe {
    width: 100%;
    height: 280px;
}

}

