@charset "utf-8";
/* CSS Document */
	html {
  scroll-behavior: smooth;
}
	.ir-arriba {
	display:none;
	cursor:pointer;
	position: fixed;
	
}
.btn2 {
  padding: 10px 20px;
  margin: 10px;
border-top:none;
border-left:none;
border-right:none;
  border-bottom: 3px solid #009CDE;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
width: 100%
}


/* 3. Border Reveal */
.btn-border-reveal {
  background-color: #fff;
  color: #1d2545;
  position: relative;
}

.btn-border-reveal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #009CDE;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-border-reveal:hover::after {
  width: 100%;
}

.btn-border-reveal:hover {
  background-color: #009CDE;
  color: white;
}


@media (max-width: 4000px) {
.banner-desktop{display:block !important; width:100%}
.banner-mobile{display: none !important}
}

@media (max-width: 1000px) {
.banner-desktop{display:block !important;  width:100%}
.banner-mobile{display: none !important}
}

@media (max-width: 780px) {
.banner-desktop{display:none !important}
.banner-mobile{display: block !important}
}

@media (max-width: 500px) {
.banner-desktop{display:none !important}
.banner-mobile{display: block !important}
}
.g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -95px 0px 0 25px !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}
</style>
<style>
/* VARIABLES DE COLOR */
:root {
    --rojo-urgencia: #ec3233;
    --azul-menu: #044083;
}
/* =========================================
   ESTILOS MOBILE FIRST (Por defecto)
========================================= */


/* Menú Inferior Sticky */
.menu-mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--azul-menu);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 10px 0 8px 0;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    font-family: inherit;
}

.menu-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    width: 25%;
    transition: opacity 0.3s ease;
}

.menu-mobile-item:hover,
.menu-mobile-item:focus {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
}

.menu-mobile-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

/* Ítem Central Destacado en Mobile */
.item-central-destacado {
    position: relative;
    /* Añadimos un poco de altura base para asegurar que el contenido interno se distribuya bien */
    height: 40px; 
}

.circulo-rojo-urgencia {
    position: absolute;
    bottom: 5px; /* CORRECCIÓN: Valor positivo para que no se corte por debajo de la pantalla */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--rojo-urgencia);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #ffffff;
}

.circulo-rojo-urgencia i {
    font-size: 22px;
    margin-bottom: 2px;
}

.circulo-rojo-urgencia span {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

/* =========================================
   MEDIA QUERIES (Desktop - Desde 768px)
========================================= */
@media (min-width: 768px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .menu-mobile-sticky {
        display: none;
    }
}

@media (max-width: 500px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .trabajo {
        display: block!important;
		width:50%!important;
		border-radius:0px;
		
    }   

 } 

        :root {
            --chp-blue: #27aae1;
            --chp-blue-dark: #1e8bbd;
            --chp-blue-light: #e9f6fc;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Utilidades de texto y fondo */
        .text-chp-blue { color: var(--chp-blue) !important; }
        .bg-chp-blue { background-color: var(--chp-blue) !important; color: white; }
        .bg-light-blue { background-color: var(--chp-blue-light) !important; }

        /* Botones personalizados */
        .btn-main {
            background-color: var(--chp-blue);
            border-color: var(--chp-blue);
            color: white;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-main:hover {
            background-color: var(--chp-blue-dark);
            border-color: var(--chp-blue-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(39, 170, 225, 0.3);
        }
        
        .btn-outline-main {
            color: var(--chp-blue);
            border-color: var(--chp-blue);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            background-color: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline-main:hover {
            background-color: var(--chp-blue);
            color: white;
        }
        .btn-outline-white {
            color: white;
            border-color: white;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            background-color: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline-white:hover {
            background-color: white;
            color: var(--chp-blue);
        }

        /* Hero Section Modernizada */
        .hero-section {
            position: relative;
            background-image: url('../images/piso-pelvico-reconecta2.png');
            background-size: cover;
            background-position: center;
            padding: 120px 0 160px; /* Espacio extra abajo para las tarjetas flotantes */
        }
        
        /* Degradado de #071d49 a transparente */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #071d49 0%, #071d49 35%, rgba(7, 29, 73, 0.85) 60%, transparent 100%);
            z-index: 1;
        }

        /* Ajuste de degradado en móviles para asegurar la lectura del texto blanco */
        @media (max-width: 991px) {
            .hero-overlay {
                background: linear-gradient(135deg, #071d49 0%, rgba(7, 29, 73, 0.95) 60%, rgba(7, 29, 73, 0.6) 100%);
            }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            color: #ffffff;
            letter-spacing: -1px;
        }
        @media (min-width: 992px) {
            .hero-title {
    font-size: 2.8rem;
}
        }
        .hero-subtitle {
    font-size: 1.24rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
        }

        .feature-box {
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 4px solid var(--chp-blue);
            position: relative;
            z-index: 10;
        }
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .features-row {
            margin-top: -80px; /* Margen negativo para lograr el efecto flotante sobre el hero */
            position: relative;
            z-index: 10;
        }

        /* Imágenes redondeadas y con sombra */
        .img-custom {
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            object-fit: cover;
        }

        /* Listas con iconos */
        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        .icon-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--chp-blue);
            font-size: 1.2rem;
        }

        /* Acordeón FAQ */
        .accordion .card {
            border: none;
            border-bottom: 1px solid #eee;
            border-radius: 0;
            margin-bottom: 10px;
        }
        .accordion .card-header {
            background-color: white;
            border-bottom: none;
            padding: 0;
        }
        .accordion .btn-link {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            padding: 20px;
            width: 100%;
            text-align: left;
            position: relative;
			
        }
        .accordion .btn-link:hover {
            color: var(--chp-blue);
        }
        .accordion .btn-link::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--chp-blue);
            transition: transform 0.3s ease;
        }
        .accordion .btn-link[aria-expanded="true"]::after {
            transform: translateY(-50%) rotate(180deg);
        }
        .accordion .btn-link[aria-expanded="true"] {
            color: var(--chp-blue);
        }

        /* Steps */
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--chp-blue);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 4px 10px rgba(39, 170, 225, 0.4);
        }

        /* Closing Section con Imagen */
        .closing-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 0;
        }
        .closing-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(39, 170, 225, 0.9); /* Capa azul para la sección final */
            z-index: 1;
        }
        .closing-section .container {
            position: relative;
            z-index: 2;
        }

        /* Footer */
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 30px;
            border-top: 1px solid #eee;
        }
        .footer-link {
            color: var(--chp-blue);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-link:hover {
            color: var(--chp-blue-dark);
            text-decoration: underline;
        }
		.box
{
	width: 100%;
	height: 550px;
	background: #1D2545;
	padding-left: 42px;
	padding-top: 29px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 20px;
}
		.working_hours
{
	padding-top: 29px;
	padding-right: 60px;
}
		.box_title {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 11px;
}

@media (max-width: 780px) {
.box
{
	width: 100%;
	height: 950px;
	background: #1D2545;
	padding-left: 42px;
	padding-top: 29px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border-radius: 20px;
}}
