@charset "utf-8";
/* CSS Document */


* {
	margin:0;
	padding:0;
	box-sizing:border-box;
    text-decoration: none;
	list-style: none;
}

a:link { text-decoration: none; }

body {
	
    margin: 0;
    padding: 0;
    
}

.ContentCentrar {
    
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}




.whatsapp-chat {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column-reverse; /* Primero la imagen, luego el mensaje */
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

/* Globo de chat */
.chat-bubble {
    background-color: #ffffff;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    max-width: 170px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Botón flotante con imagen de perfil */
.whatsapp-button {
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animaciones al pasar el mouse */
.whatsapp-chat:hover .chat-bubble {
    opacity: 1;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


@font-face {

  font-family: 'Sk-Bold';
  src: url('../Fonts/Sk-Modernist-Bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Mono';
  src: url('../Fonts/Sk-Modernist-Mono.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Regular';
  src: url('../Fonts/Sk-Modernist-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

/* PORTADA */


.slideshow-container {
	
    position: relative;
    max-width: 100%;
    margin: auto;
    height: 890px; /* Ajusta la altura de la portada */
    background-color: black; /* Fondo negro para mantener el efecto */
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Ajusta la duración de la transición */
    background-color: black; /* Fondo negro durante la transición */
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.text-overlay {
	
    position: absolute;
    bottom:270px;
    left: 50%;
    transform: translateX(-50%);
/*    background: rgba(0, 0, 0, 0.5);*/
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 80px;
    text-align: center;
	width: 80%;
	font-family: Sk-Bold;
	
}




/* INTRODUCCIÓN */


.Introduccion {	
	
	width: 100%;
	height: 200px;
	background-color: #c52825;
	display: block;
	padding: 10px;
}


.Introduccion img {
	
	width: 220px;
	height: 160px;
	
}





/* TEXTO INTRODUCTORIO */


.Presentacion {
	
	width: 100%;
	height: auto;
	background-color: #f0f0f0;

}

.TitlePresentacion {
	
	font-family: Sk-Bold;
	font-size: 120px;
	color: #fff;
	padding-bottom: 40px;
	text-align: center;
	margin-top: 10px;

		
}


.TextPresentacion {
	
	font-family: Sk-Regular;
	font-size: 21px;
	color: #fff;
	width: 75%;
	text-align: justify;
	padding-bottom: 50px;
	text-align: center;
	line-height: 30px;
}

.TextPresentacion p { height: 12px; }




.service-section {
    max-width: 1200px;
    margin: 50px 20px;
    display: flex;
    justify-content:center;

}

.service-image-left {
    flex: 1.1;
    padding-right: 10px;
}
.service-image-left img {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
}
.service-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-grid-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}
.service-grid-images img {
    width: 47%;
    border-radius: 10px;
}
.service-text-content {
    text-align: left;
    max-width: 500px;
}
.service-text-content p {
    font-size: 15px;
    line-height: 1.8;
}
.service-cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
}
/* Contenedor principal para centrar los divs */



/* Texto y botón sobre la imagen, siempre visibles */
.overlay {
	
	font-family: Sk-Bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #000;
    text-align: left;
    padding: 40px;
	font-size: 33px;
}


.overlay2 {

   font-family: Sk-Regular;
    font-size: 19px; /* Tamaño de fuente ajustado */
    margin-top: 5px; /* Espacio entre el título y el texto */
}


button {
	
	width: 220px;
    padding: 10px 50px;
    background-color: #c52825;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
	align-items: center;
}


button:hover {  background-color: #ff3300; }


.image-container-pedro {
	
    width: 100%;
    height: 720px;
	
}


















/* Sección de Presentación */
.presentacion {
	
    width: 100%; /* Ancho completo de la pantalla */
    height: 700px; /* Altura de 700px */
    background-image: url('../img/FondoPedro.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover; /* Asegura que la imagen cubra todo el div */
    background-position: center; /* Centra la imagen */
    display: flex;
    align-items: center; /* Centra verticalmente el contenido */
    justify-content: flex-start; /* Coloca el contenido en el lado izquierdo */
    padding-left: 50px; /* Añade espacio a la izquierda */
	margin-top: 80px;
	
}

/* Estilos del texto dentro de la presentación */
.texto-presentacion {
    width: 60%; /* Ocupa el 40% del ancho del div */

    color: #000;
    padding: 20px;
    border-radius: 10px; /* Bordes redondeados */
    box-sizing: border-box;
}

.texto-presentacion h2 {
    font-size: 32px;
    margin-bottom: 20px;
		font-family: Sk-Bold;
}

.texto-presentacion p {
    font-size: 17px;
    line-height: 1.6;
	font-family: Sk-Regular;
}



/* LOGOTIPOS */
/* Sección de Clientes */
.seccion-clientes {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f1f1f1; /* Color de fondo opcional */
    padding: 20px 0;
}

/* Parte izquierda - Título "Nuestros Clientes" */
.titulo-clientes {
    width: 30%; /* Ocupa el 30% del ancho */
    text-align: center; /* Centra el texto en el div */
    padding: 20px;
	font-family: Sk-Bold;
}

.titulo-clientes h2 {
    font-size: 32px;
    color: #333; /* Color del texto */
    font-weight: bold;
}

/* Parte derecha - Pasarela de Logotipos */
.logo-pasarela {
    width: 70%; /* Ocupa el 70% del ancho */
    overflow: hidden; /* Oculta los logos que salen del área visible */
}

/* Contenedor de los logos */
.logos-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-logos 60s linear infinite; /* Animación continua */
}

/* Estilo de los logos */
.logos-wrapper img {
    height: 80px; /* Altura de los logos */
    margin: 0 30px; /* Espacio entre los logos */
    filter: grayscale(100%); /* Convierte los logos a blanco y negro */
    opacity: 0.8; /* Aplica un leve efecto de transparencia */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Efecto hover suave */
}

/* Efecto hover: cuando pases el mouse por encima de los logos */
.logos-wrapper img:hover {
    transform: scale(1.1); /* Aumenta ligeramente el tamaño del logo */
    opacity: 1; /* Hace el logo completamente opaco al hacer hover */
}

/* Animación de scroll de izquierda a derecha en loop continuo */
@keyframes scroll-logos {
    0% {
        transform: translateX(0); /* Comienza con todos los logos visibles */
    }
    100% {
        transform: translateX(-100%); /* Mueve los logos hacia la izquierda hasta ocultar el primer set */
    }
}




/* CITA */

.Cita {
	
	width: 100%;
	background-color: #c52825;
	height: auto;

}

.BotonCita {
	
	width: 240px;
    padding: 10px 0px;
    background-color: #c52825;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
	align-items: center;
    font-family: Sk-Bold;
	border-radius: 3px;

}








/* Responsive Design */
@media (max-width: 1024px) {
    .service-section {
        flex-direction: column;
        text-align: center;
    }
    .service-image-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .service-grid-images {
        flex-direction: column;
        align-items: center;
    }
    .service-grid-images img {
        width: 80%;
        margin-bottom: 10px;
    }
    .service-text-content {
        max-width: 100%;
    }
}





/* Tablets and larger phones */
@media (max-width: 768px) {
	
	    .service-image-left img {
        max-width: 100%;
    }
    .service-grid-images img {
        width: 100%;
    }
    .service-text-content p {
        font-size: 14px;
    }
    .service-cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    .TitlePresentacion {
        font-size: 60px;
    }

    .text-overlay {
        bottom: 350px; /* Ajusta este valor según lo alto que lo quieras */
        font-size: 50px; /* Ajusta tamaño de texto si es necesario */
    }
}
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .Presentacion {
        padding: 20px;
    }

    .TextPresentacion {
        font-size: 18px;
        width: 90%;
    }

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

    .image-container {
        width: 90%;
        height: auto;
        max-height: 500px;
    }

    .text-introduction {
        padding: 10px;
    }

    .texto-presentacion {
        width: 90%;
        padding: 10px;
    }

    .seccion-clientes {
        flex-direction: column;
        padding: 10px;
    }

    .titulo-clientes {
        width: 100%;
    }

    .logo-pasarela {
        width: 100%;
    }

    .logos-wrapper img {
        height: 60px;
        margin: 0 15px;
    }
	
	    .whatsapp-chat {
        bottom: 40px;
        right: 40px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .chat-bubble {
        font-size: 13px;
        max-width: 150px;
    }
}
}

/* Phones */
@media (max-width: 412px) {
	
	    .whatsapp-chat {
        bottom: 30px;
        right: 20px;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
    }

    .chat-bubble {
        font-size: 12px;
        padding: 8px 12px;
        max-width: 130px;
    }
	
	
    .TitlePresentacion {
        font-size: 40px;
        margin-top: 50px;
    }

    .text-overlay {
        bottom: 300px; /* Ajusta este valor para teléfonos más pequeños */
        font-size: 40px;
    }
    .Introduccion img {
        width: 180px;
        height: 130px;
    }

    .Presentacion {
        padding: 15px;
    }

    .TextPresentacion {
        font-size: 16px;
        width: 100%;
    }

    .overlay {
        font-size: 22px;
    }

    .overlay2 {
        font-size: 14px;
    }

    .content {
        gap: 10px;
    }

    .image-container {
        height: 300px;
    }

    .texto-presentacion h2 {
        font-size: 28px;
    }

    .texto-presentacion p {
        font-size: 15px;
    }
}

/* Small Phones */
@media (max-width: 420px) {
	
	    .whatsapp-chat {
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
    }

    .chat-bubble {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 120px;
    }
	
	
    .TitlePresentacion {
        font-size: 35px;
    }

    .text-overlay {
        bottom: 350px; /* Ajuste más alto en pantallas muy pequeñas */
        font-size: 35px;
    }

    .content {
        padding: 10px;
    }

    .overlay {
        padding: 20px;
        font-size: 20px;
    }

    .overlay2 {
        font-size: 12px;
    }

    .image-container {
        width: 100%;
        height: auto;
    }

    .image-container img {
        object-fit: contain;
    }

    .texto-presentacion p {
        font-size: 14px;
    }
}



