* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    overflow-x: hidden; /* Evita el desplazamiento horizontal */
}
header {
	width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Reducimos el padding para hacerlo más compacto */
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 100;
}
.mago{
    margin-left: 30px;
}
.logo img {
    width: 120px;
}
.whatsapp-button {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    background-color: #12bef0;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
    background-color:#1090b7;
    transform: scale(1.1);
}

.rrss {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
	left: 20px;
	display: flex;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.rrss a {
	width: 42px;
	height:42px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	background: white;
	transition: all 0.3s ease-in-out;
}
.rrss a span {
	font-size: 1.3em;
	color: #007bff;
	transition: all 0.3s ease-in-out;
}
.rrss a:hover {
	background: #007bff;
}
.rrss a:hover span {
	color: white;
}

/* MENÚ DE NAVEGACIÓN */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #152956;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #007bff;
}

.btn-contactar {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-contactar:hover {
    background-color: #0056b3;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #152956;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Mostramos el menú hamburguesa en pantallas pequeñas */
    }

    nav ul {
        display: none; /* Ocultamos el menú en pantallas pequeñas */
        position: absolute;
        top: 60px; /* Debajo del header */
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex; /* Mostramos el menú cuando está activo */
    }

    .btn-contactar {
        display: none; /* Ocultamos el botón CONTACTAR en pantallas pequeñas */
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px; /* Ajustamos el tamaño del logo en pantallas más pequeñas */
    }
}



.btn-contactar:hover {
    background-color: #0056b3;
}

.hero {
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    z-index: 0;
}

.slider {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
}

/* Transiciones para el desvanecimiento */
 .slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.slider{
    top: -4rem;
   
}

.hero .fondo {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	overflow: hidden;
	z-index: -1;
}
.hero .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
}

.slider .slide.active {
    opacity: 1;
    position: relative;
}

/* Fondos diferentes para cada slide */
.slider .slide:nth-child(1) {
    background-image: url('img/Property\ 1=slider-1\ \(1\).png'); /* Cambia por la ruta de tu imagen */
}

.slider .slide:nth-child(2) {
    background-image: url('img/Property\ 1=slider-3.png'); /* Cambia por la ruta de tu imagen */
}

.slider .slide:nth-child(3) {
    background-image: url('img/cirugia-general-administradora-de-salud-en-mexico\ \(2\).jpg'); /* Cambia por la ruta de tu imagen */
}

.slider .slide:nth-child(4) {
    background-image: url('img/Property\ 1=slider-4.png'); /* Cambia por la ruta de tu imagen */
}

/* Especificidad de los estilos de los elementos dentro del slider */
.slider h1 {
    font-weight: 800;
    font-size: 45px; /* Ajustamos el tamaño del texto para hacerlo más pequeño */
    color: #152956;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.303);
}

.slider h1 > span {
    color: #007bff;
}

.slider p {
    font-weight: 600;
    font-size: 16px; /* Hacemos más pequeño el texto del párrafo */
    color: #152956;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.281);
}

.slider .btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 24px; /* Reducimos el tamaño del botón */
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: 16px;
}
.btn-primary{
    position: relative;
    z-index: 100;
}

.slider .btn-primary:hover {
    background-color: #0056b3;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #007bff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    header {
        padding: 10px 15px; /* Reducimos el padding aún más en móviles */
    }

    nav ul {
        gap: 10px; /* Menos espacio entre los enlaces del menú en móviles */
    }

    .logo img {
        width: 100px; /* Hacemos el logo más pequeño en móviles */
    }

   

    
    .slider .btn-primary {
        padding: 10px 20px; /* Hacemos el botón más pequeño en móviles */
        font-size: 14px;
    }

    .slider .slide {
        top: 50px; /* Ajustamos la posición del contenido en móviles */
    }
}

@media (max-width: 480px) {
    .slider p {
        font-size: 18px;
        padding: 1rem; /* Texto más pequeño para pantallas muy pequeñas */
    }

    .slider h1 {
        font-size: 32px; /* Título más pequeño para pantallas muy pequeñas */
    }
}

.slide a,.slide h1,.slide p{
    position: relative;
    top: 6rem;
}
.sobre-nosotros {
    background-color: #f0f8ff;
   
}
.sobre-nosotros h2{
    font-size: 36px;
    text-align: center;
    color: #152956;
	padding:2.1em 0 24px;
    font-weight: 800;

}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contenido {
    flex: 1;
    margin-right: 20px;
}



.contenido h3 {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 800;
}

.contenido p {
    font-size: 18px;
    color: #152956;
    font-weight: 500;
    margin-bottom: 30px;
}

.beneficios {
    margin-bottom: 30px;
}

.beneficios h4,
.contacto h4 {
	font-size: 1.3em;
    color: #152956;
    display: inline-block;
    margin-bottom: 20px;
	position: relative;
}
.beneficios h4::after,
.contacto h4::after {
	content: '';
	width: 60px;
	height:48px;
	background: #cae6ff;
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-50%,-50%);
	z-index: -1;
}

.beneficios-cards {
    display: flex;
    gap: 20px;
	flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: left;
}

.card img {
    max-width: 50px;
    margin-bottom: 10px;
}

.card h5 {
    font-size: 18px;
    color: #152956;
    margin-bottom: 10px;
    font-weight: 700;
}

.card p {
    font-size: 16px;
    font-weight: 500;
    color: #152956;
}

.btn-detalles {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #152956;
	background-color: #152956;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-detalles:hover {
	background: #007bff;
}

.imagen {
    flex: 0.8;
}

.imagen img {
    max-width: 100%;
    border-radius: 10px;
    position: relative;
    top: 5rem;
}
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contenido {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .imagen img {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .beneficios-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sobre-nosotros h2 {
        font-size: 30px;
    }

    .contenido h3 {
        font-size: 26px;
    }

    .contenido p {
        font-size: 16px;
    }

    .card h5 {
        font-size: 16px;
    }

    .card p {
        font-size: 14px;
    }

    .btn-detalles {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sobre-nosotros h2 {
        font-size: 24px;
    }

    .contenido h3 {
        font-size: 22px;
    }

    .contenido p {
        font-size: 14px;
    }

    .card h5 {
        font-size: 14px;
    }

    .card p {
        font-size: 12px;
    }

    .btn-detalles {
        padding: 8px 16px;
        font-size: 12px;
    }

    .beneficios h4 {
        font-size: 14px;
    }

    .card img {
        max-width: 40px;
    }
    .sobre-nosotros {
        background-color: #f0f8ff;
        padding: 50px 0;
        margin-top: -3rem;
    }
}

.polizas-sgmm {
    background-color: #152956;
    color: white;
    padding: 150px 0;
    text-align: center;
    display: none;
}

.polizas-container {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.polizas-text {
    flex: 1;
}

.badge-polizas {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
  
    
    }

.polizas-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 2rem;
    text-align: center;
}

.polizas-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.polizas-description {
    font-size: 16px;
    color: #f0f8ff;
    margin-bottom: 30px;
}

.btn-polizas {
    display: inline-block;
    padding: 15px 30px;
    background-color:transparent;
    border: 2px solid white;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-polizas:hover {
    background-color: #ffffff;
    color: #152956;
}

.polizas-image {
    flex: 1;
}

.polizas-image img {
    max-width: 100%;
    border-radius: 10px;
}

.polizas-subtext {
    text-align: center;
    
    color: white;
    padding: 10px;
    font-size: 14px;
}

/* Sección Turismo Médico */
.turismo-medico {
    background-color: #f0f8ff;
    padding: 150px 0;
}

.turismo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.turismo-title {
    font-size: 36px;
    font-weight: 800;
    color: #152956;
    margin-bottom: 20px;
}

.turismo-description {
    font-size: 18px;
    font-weight: 500;
    color: #152956;
    margin-bottom: 30px;
}

.clientes-beneficios {
    margin-bottom: 30px;
}

.beneficios-title {
	font-size: 1.3em;
    color: #007bff;
    display: inline-block;
    margin-bottom: 3rem;
	position: relative;
}
.beneficios-title::after {
	content: '';
	width: 60px;
	height:48px;
	background: #cae6ff;
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-50%,-50%);
	z-index: -1;
}

.clientes-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cliente-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    text-align: left;
}

.cliente-card img {
    max-width: 60px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    color: #152956;
    margin-bottom: 10px;
    font-weight: bold;
}
.avionsi{
    position: relative;
}
.avion{
    position: absolute;
    left: 40%;
    top: -4rem;
    width: 400px;
}

.card-description {
    font-size: 16px;
    font-weight: 500;
    color: #152956;
}

.btn-turismo {
    display: inline-block;
    padding: 15px 30px;
	color: white;
    background-color: #007bff;
    border: 2px solid #007bff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-turismo:hover {
    background-color: #152956;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .polizas-container, .turismo-container {
        flex-direction: column;
        text-align: center;
    }

    .polizas-image img {
        margin-top: 20px;
    }

    .clientes-cards {
        flex-direction: column;
        gap: 20px;
    }
    .avion {
        position: absolute;
        left: 6%;
        top: -4rem;
        width: 352px;
    }
}

.section-cirugias {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.titulo-cirugias {
    margin-top: 4rem;
    font-size: 2rem;
    color: #003366;
    font-weight: 800;
}

.subtitulo-cirugias {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

/*.grid-cirugias {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}
.grid-cirugias1 {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 2rem;
}*/

.grid-cirugias {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
}

.card-cirugia {
	width: calc(25% - 9px);
	margin: 0 10px 0 0;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    overflow: hidden;
}

.card-cirugia:nth-child(1),
.card-cirugia:nth-child(6),
.card-cirugia:nth-child(7),
.card-cirugia:nth-child(12),
.card-cirugia:nth-child(13),
.card-cirugia:nth-child(18) {
	width: calc(50% - 7px);
}
.card-cirugia:nth-child(3n) {
	margin: 0;
}

.card-cirugia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(162, 216, 255, 0.89), rgba(255, 255, 255, 0.325));
    z-index: 1;
    pointer-events: none; /* Permite interactuar con el contenido de la tarjeta */
}

.card-cirugia h3, 
.card-cirugia ul, 
.card-cirugia .btn-ver-mas {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté por encima del pseudo-elemento */
}

.card-cirugia h3 {
    color: #003366;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-cirugia ul {
    padding: 0;
    margin: 0;
    color: #003366;
}

.card-cirugia ul li {

    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.card-cirugia .btn-ver-mas {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    width: 100px;
    background-color: #0066cc;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.card-cirugia .btn-ver-mas:hover {
    background-color: #005bb5;
}

.card-cirugia .fondo {
	width: 100%;
	height:100%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
.card-cirugia .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	transition: ease-in 3s;
}
.card-cirugia:hover .fondo img {
	transform: scale(1.3);
}


.contenido-card {
    text-align: left;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



@media (max-width: 768px) {
    /*.grid-cirugias, .grid-cirugias1 {
        grid-template-columns: 1fr;
    }*/
	.card-cirugia,
	.card-cirugia:nth-child(1),
	.card-cirugia:nth-child(6),
	.card-cirugia:nth-child(7),
	.card-cirugia:nth-child(12),
	.card-cirugia:nth-child(13),
	.card-cirugia:nth-child(18) {
		width: 100%;
		margin: 0;
	}

    .titulo-cirugias {
        font-size: 1.5rem; /* Ajusta el tamaño de la fuente */
        margin-top: 2rem;
    }

    .subtitulo-cirugias {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .card-cirugia {
        min-height: 250px; /* Ajusta la altura mínima */
        padding: 15px;
    }

    .card-cirugia h3 {
        font-size: 1.2rem; /* Ajusta el tamaño del título */
        margin-bottom: 8px;
    }

    .card-cirugia ul li {
        font-size: 0.9rem; /* Ajusta el tamaño del texto en los ítems */
        margin-bottom: 6px;
    }

    .card-cirugia .btn-ver-mas {
        width: 90px; /* Ajusta el ancho del botón */
        padding: 8px 12px;
        font-size: 0.9rem; /* Ajusta el tamaño de la fuente del botón */
    }
}

/* Estilos para pantallas muy pequeñas (por debajo de 480px, teléfonos más pequeños) */
@media (max-width: 480px) {
    .grid-cirugias, .grid-cirugias1 {
        grid-template-columns: 1fr; /* Sigue en una columna */
    }

    .titulo-cirugias {
        font-size: 1.3rem;
    }

    .subtitulo-cirugias {
        font-size: 0.9rem;
    }

    .card-cirugia {
        min-height: 220px; /* Reducir la altura mínima aún más */
        padding: 10px;
    }

    .card-cirugia h3 {
        font-size: 1rem; /* Reducir el tamaño del título */
    }

    .card-cirugia ul li {
        font-size: 0.8rem; /* Reducir el tamaño del texto */
    }

    .card-cirugia .btn-ver-mas {
        width: 80px; /* Botón más pequeño */
        padding: 6px 10px;
        font-size: 0.8rem; /* Tamaño de la fuente más pequeño */
    }
}
.section-salud {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salud-izquierda {
    width: 45%;
    text-align: left;
}

.salud-izquierda h3 {
    font-size: 0.9rem;
    color: #0071c5;
    font-weight: bold;
    margin-bottom: 10px;
}

.salud-izquierda h1 {
    font-size: 2rem;
    color: #003366;
    font-weight: 800;
    margin-bottom: 20px;
}

.salud-izquierda p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.botones {
    display: flex;
    gap: 15px;
}

.btn-contactar, .btn-servicios {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-block;
}

.btn-contactar {
    background-color: #0071c5;
    color: white;
    border: none;
}

.btn-contactar.active,
.btn-contactar:hover {
    background-color: #005bb5;
}

.btn-servicios {
    background-color: white;
    color: #0071c5;
    border: 1px solid #0071c5;
}

.btn-servicios:hover {
    background-color: #f0f8ff;
}

.salud-derecha {
    width: 45%;
}

.lista-servicios {
    list-style: none;
    padding: 0;
    position: relative;
}

.lista-servicios li {
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}

.lista-servicios li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: #0071c5;
    border-radius: 50%;
}

.lista-servicios li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    height: 200px;
    width: 2px;
    background-color: #0071c5;
}

.lista-servicios li:last-child::after {
    display: none;
}

.lista-servicios h4 {
    font-size: 1.1rem;
    color: #003366;
    margin-bottom: 10px;
}

.lista-servicios p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .contenedor {
        flex-direction: column;
    }

    .salud-izquierda, .salud-derecha {
        width: 100%;
        margin-bottom: 30px;
    }

    .botones {
        flex-direction: column;
        gap: 10px;
    }
}

/* Sección de Testimonios */
.testimonial-section {
    background-color: #cfe7ff; /* Color de fondo similar al azul claro */
    padding: 40px;
    text-align: center;
    position: relative;
    width: 100%;
   
    margin: 0 auto;
  }
  
  .testimonial-title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3a8a; /* Azul oscuro para el título */
    margin-bottom: 20px;
  }
  
  .testimonial-content {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .testimonial-quote {
    font-style: italic;
  }
  
  .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333; /* Color de texto oscuro */
  }
  
  .testimonial-author {
    font-weight: bold;
    margin-top: 20px;
    font-size: 16px;
  }
  
  .testimonial-role {
    font-size: 14px;
    color: #666; /* Color gris para el rol */
  }
  
  /* Navegación (Flechas) */
  .testimonial-navigation {
    position: absolute;
    top: 50%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .nav-button {
    background-color: transparent;
    border: 2px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #007bff;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .nav-button:hover {
    background-color: #007bff;
    color: #fff;
  }
  



@media (max-width: 768px) {
    .testimonial-navigation {
        position: absolute;
        top: 91%;
        width: 90%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        left: 1rem;
    }
    .btn-contactar {
        background-color: #005bb5;
        width: 140px;
    }
    .btn-servicios {
        background-color: white;
        color: #0071c5;
        border: 1px solid #0071c5;
        width: 146px;
    }
   
}

.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e8f0ff; /* Fondo azul claro */
    padding: 40px;
    text-align: center;
    position: relative;
    height: 70vh;
    font-family: 'Arial', sans-serif;
  }
  
  /* Botón flotante de contacto */
  .cta-contact-button {
    width: 120px;
    position: relative;
    left: 45%;
    background-color: transparent;
    border: 1px solid #165BDF;
    color: #165BDF;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	  text-decoration: none;
  }
  
  .cta-contact-button:hover {
    background-color: #165BDF;
    color: #fff;
  }
  
  /* Título principal */
  .cta-main-title {
    font-size: 36px;
    color: #003366; /* Azul oscuro */
    margin-bottom: 10px;
    font-weight: 800;
  }
  
  /* Subtítulo */
  .cta-subtitle {
    font-size: 34px;
    color: #165BDF; /* Azul más claro */
    
    margin-bottom: 30px;
    font-weight: 800;
  }
  
  /* Contenedor de botones */
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Botones de acción */
  .cta-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  /* Específico para botón de WhatsApp */
  .cta-whatsapp {
    background-color: #25d366; /* Verde de WhatsApp */
  }
  
  .cta-whatsapp:hover {
    background-color: #1db954; /* Verde oscuro en hover */
  }
  
  /* Específico para botón de Teléfono */
  .cta-phone {
    background-color: #007bff; /* Azul */
  }
  
  .cta-phone:hover {
    background-color: #0056b3; /* Azul oscuro en hover */
  }

  .footer-section {
    background-color: #162349; /* Color azul oscuro */
    padding: 40px 20px;
    color: #EEF7FF;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .footer-left {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .footer-nav a {
    color: #EEF7FF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-nav a.active,
  .footer-nav a:hover {
    color: #007bff; /* Azul para hover */
  }
  
  .footer-socials {
    margin: 20px 0;
  }
  
  .footer-socials a {
    color: #EEF7FF;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #EEF7FF;
  }
  
  .footer-credit {
    font-size: 12px;
    color: #aaa;
  }
  
  .footer-credit .heart {
    color: red;
  }
  .footer-credit a {
	  color: white;
	  text-decoration: none;
	  opacity: 0.7;
  }
  .footer-credit a:hover {
	  opacity: 0.9;
  }
  
  .footer-right p {
    font-size: 14px;
	  color: #cfe7ff;
    margin-bottom: 10px;
  }
  .footer-right p a {
	  color: white;
	  text-decoration: none;
  }
  
  .footer-right i {
    margin-right: 10px;
    color: #EEF7FF;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    
    .cta-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #e8f0ff;
        padding: 40px;
        text-align: center;
        position: relative;
        height: 100vh;
        font-family: 'Arial', sans-serif;
    }
    .cta-contact-button {
        width: 120px;
        position: relative;
        left: 31%;
        background-color: transparent;
        border: 1px solid #165BDF;
        color: #165BDF;
        padding: 5px 15px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    }
  
    .footer-left, .footer-right {
      margin-bottom: 20px;
    }
  }

  .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 0;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    color: 003366;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li.active,
.dropdown-menu li:hover {
    background-color: #007bff; /* Fondo azul */
}

.dropdown-menu li.active a,
.dropdown-menu li:hover a {
    color: white; /* Texto blanco */
}

.dropdown:hover .dropdown-menu {
    display: block;
}






@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#owl,
#owl2 {
	position: relative;
	overflow: hidden;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	max-width: 100vw;
	margin: 0 auto;
	position:relative;
	display:block;
	overflow: hidden;
	z-index: 3;
	cursor: grab;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}

#owl2.owl-carousel {
	width: calc(100% - 60px);
	max-width: 800px;
	background: #cfe7ff;
}
.owl-carousel .item {
	position: relative;
}
#owl2 .owl-carousel .item {
	width: 100%;
	text-align: center;
	background: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: stretch;
	z-index: 1;
}

.owl-carousel .cuadro {
	width: 100%;
	height:100%;
	text-align: center;
	padding:60px 12px;
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: flex-end;
	z-index: 3;
}
.owl-carousel .cuadro h1 {
	font-weight: 800;
    font-size: 45px;
    color: #152956;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.303);
}
.owl-carousel .cuadro h1 .highlight {
    color: #007bff;
}
.owl-carousel .cuadro p {
	width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #152956;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.281);
}
.owl-carousel .cuadro .btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 24px; /* Reducimos el tamaño del botón */
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: 16px;
}
.owl-carousel .cuadro h1 .btn-primary:hover {
    background-color: #0056b3;
}

.owl-carousel .owl-item.active .cuadro h1 {
	animation: zoomIn ease-in-out 1.5s 0.3s both;
}
.owl-carousel .owl-item.active .cuadro p {
	animation: fadeIn ease-in-out 1.2s 0.9s both;
}
.owl-carousel .owl-item.active .cuadro .btn-primary {
	animation: fadeInUp ease-in-out 1.2s 1.2s both;
}
.owl-carousel .cuadroImagen {
	width: 100vw;
	height:100vh;
	position: relative;
	z-index: 0;
}
.owl-carousel .cuadroImagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: relative;
}

.owl-carousel .item .texto {
	width: 100%;
	height:100%;
	margin: 0 auto;
	padding:18px;
	text-align: center;
	position: relative;
}
.owl-carousel .owl-item.active .texto {
	animation: zoomIn ease-in-out 1.2s 0.3s both;
}
.owl-carousel .item .texto * {
	display: block;
}
.owl-carousel .item .texto h3 {
	margin: 0 0 21px;
}
.owl-carousel .item .texto p {
	margin: 0 auto 12px;
	opacity: 0.9;
}
.owl-carousel .owl-item.active .texto h3,
.owl-carousel .owl-item.active .texto p {
	animation: fadeIn ease-in-out 3s 0.3s both;
}
.texto {
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}

.owl-nav {
	width: 100%;
	max-width: calc(100vw - 24px);
	position: absolute;
	top: 50%;
	left:50%;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin: 30px auto;
	pointer-events: none;
	transform: translate(-50%,-100%);
	z-index: 12;
}
#owl2 .owl-nav {
	display: none;
}
.owl-nav button {
	width: 39px;
	height:42px;
	font-size: 21px;
	border: none;
	border-radius: 9px;
	cursor: pointer;
	color: #152956;
	background: #f0f8ff;
	pointer-events: all;
}
	

.owl-dots {
	width: 100%;
	text-align: center;
	position: relative;
	padding:42px 0 30px;
	z-index: 9;
}
#owl .owl-dots {
	display: none;
}
.owl-dots .owl-dot {
	width: 18px;
	height:18px;
	border: none;
	background: white;
	position: relative;
	margin: 0 18px 0 0;
	border-radius: 50%;
	cursor: pointer;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot.active, 
.owl-dots .owl-dot:hover {
	background: #007bff;
}

@media (max-width: 768px) {
	
	.owl-carousel .cuadro {
		padding:60px 0;
	}
	
	.owl-carousel .cuadro h1 {
		font-size: 27px;
	}
	.owl-carousel .item .texto p {
		font-size: 0.9em;
	}
	.owl-carousel .cuadro p {
		font-weight: 500;
    	font-size: 14px;
	}
	.owl-carousel .cuadroImagen {
		opacity: 0.7;
	}
	
	.owl-dots .owl-dot {
		width: 15px;
		height:15px;
	}
	
	.btn-contactar {
		width: auto;
		font-size: 0.8em;
		margin: 0 0 9px;
		padding: 6px 15px;
	}
	
}










