/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: none !important;
    transition: none !important;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#main-container {
    width: 1280px;
    height: 720px;
    overflow: hidden;
    position: relative;
}

body {
    color: #fff;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", serif;
    font-weight: 700;
}

p, li, a {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.0);
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar img {
    position: absolute;
    height: 100px;
    width: auto;
}

.logohome {
    position: absolute;
    left: 120px;
    top: 50px;
    height: 100px;
    width: auto;
}

/* Estilos generales para el botón de WhatsApp */
.whatsapp-button {
    position: absolute;
    top: 90px;
    right: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0e9a41;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 300px;
}

/* Imagen dentro del botón */
.button-image {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50%;
    margin-right: 290px;
}

/* Texto dentro del botón */
.button-text {
    font-family: "Montserrat", serif;
    color: #ffffff;
    font-size: 15px;
}

/* Cambio de color en hover */
.whatsapp-button:hover {
    background-color: #0a710e;
    transform: translateY(-2px);
}

/* Icono dentro del botón */
.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* --- Estilos para pantallas menores a 1000px --- */
@media (max-width: 1024px) {
    .whatsapp-button {
		height: 60px;
        right: 70px;
        width: 200px;
        padding: 8px;
    }

    .button-image {
        width: 160px !important;
        height: 160px !important;
        margin-right: 237px;
    }

    .button-text {	
        font-size: 12px;
    }
}

/* --- Estilos para pantallas menores a 600px --- */
@media (max-width: 780px) {
    .whatsapp-button {
        top: 15px;
        right: 15px;
        width: 140px;
        padding: 6px;
    }

    .button-image {
		margin-left: 250px;
		margin-top: 65px;
        width: 150px !important;
        height: 150px !important;
        margin-right: 5px;
    }

    .button-text {
        font-size: 10px;
    }
}

.hero {
    font-family: "Montserrat", serif;
    font-weight: bold;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    z-index: 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.logo-small {
    position: absolute;
    top: 50%;
    transform: translateY(40%);
    width: 100px;
    height: auto;
}

.hero .subtitle {
    font-family: "Montserrat", serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: "Bebas Neue", serif;
    font-size: 100px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero .location {
    font-family: "Montserrat", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .location span {
    margin: 0 10px;
}

/* Ajustes para pantallas menores a 980px */
@media (max-width: 980px) {
    .logohome {
        height: 50px;
        margin-bottom: 10px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }

    .logohome {
        position: relative;
        left: 0;
        top: 0;
        height: 80px;
        margin-bottom: 0;
    }

	.button-image {
		margin-left: 250px;
        width: 150px !important;
        height: 150px !important;
        margin-right: 480px;
	
    }

    .hero .content {
        text-align: center;
    }

    .whatsapp-button {
		height: 60px;
        right: 70px;
        width: 200px;
        padding: 8px;
    }
}

/* Ajustes para pantallas menores a 460px */
@media (max-width: 460px) {
    .logohome {
        height: 40px;
    }

    .logo-small {
		margin-top: 190px;
        height: 50px !important;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

	.hero img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform-origin: center center;
		z-index: 0;
	}

    .hero .subtitle {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero .location {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        margin: 10px 0;
    }

    .hero .content {
        padding: 10px;
        text-align: center;
    }

    .logohome {
        height: 60px;
    }

    .whatsapp-button {
		margin-top: 15px;
		margin-left: 165px;
		height: 35px;
        width: 120px;
        padding: 10px;
        font-size: 14px;
    }

	.button-image {
		margin-bottom: 50px;
		width: 90px !important;
		height: 90px !important;
		margin-right: 375px;

	}

    .button-text {
        font-size: 6px;
    }
}








	.services {
		position: relative;
		/* Permite posicionar elementos dentro del contenedor */
		padding: 90px 20px;
		color: #fff;
		/* Color del texto */
		text-align: center;
		overflow: hidden;
		/* Asegura que no haya desbordes */
	}

	.additional-info {
		display: inline-table;
		justify-content: center !important;
		text-align: center !important;
		/* Centra el texto */
		font-family: "Montserrat", sans-serif;
		/* Mantiene la consistencia tipográfica */
		font-size: 12px;
		/* Tamaño acorde al diseño */
		margin-top: 20px;
		/* Espaciado entre las cards y el texto */
		color: #fff;
		/* Mantiene el texto blanco */
		line-height: 1.5;
		/* Mejora la legibilidad */
		max-width: 800px;
		/* Limita el ancho del texto */
		text-align: center;
		/* Centra el texto horizontalmente */

	}

	/* Responsividad para pantallas pequeñas */


	.services .background-image {
		position: absolute;
		/* La imagen ocupa todo el fondo */
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform-origin: center center;
		object-fit: cover;
		/* Escala la imagen para cubrir toda el área */
		z-index: -3;
		/* Envía la imagen al fondo */
	}

	.services h2 {
		font-family: "Bebas Neue", serif;
		position: relative;
		/* Permite que el texto esté por encima de la imagen */
		font-size: 40px;
		margin-bottom: 20px;
		letter-spacing: 3px;
		/* Espacia las letras */
	}

	.countdown-box img.countdown-icon {
		width: 60px;
		/* Ajusta el tamaño del ícono */
		height: auto;
		/* Mantén las proporciones */
		margin-bottom: 10px;
		/* Espacio entre el ícono y el texto */
	}

	.countdown-box h1 {
		font-family: "Montserrat", serif;
		font-weight: bold;
		/* Aplica el estilo bold */
		font-size: 20px;
		margin-bottom: 10px;
		font-weight: bold;
	}

	.countdown-box p {
		font-family: "Montserrat", serif;
		font-size: 14px;
		line-height: 1.5;
		color: #fff;
	}


	/* Sección Countdown */

	/* Estilo para los cuadros */

	.countdown-container {
		display: flex;
		justify-content: center;
		/* Espacio igual entre los cuadros */
		align-items: center;
		/* Centrar verticalmente los cuadros */
		gap: 20px;
		/* Espaciado horizontal */
		margin-top: 20px;
		flex-wrap: wrap;
		/* Permite que los cuadros se ajusten en varias filas si el espacio es insuficiente */
	}

	.titulo2 {
		font-family: "Montserrat", serif;
		font-weight: bold;
		/* Aplica el estilo bold */

	}

	.countdown-box {
		border: 2px solid #fff;
		width: 180px;
		/* Ajusta el ancho de los cuadros */
		height: 150px;
		/* Ajusta la altura de los cuadros */
		text-align: center;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		display: flex;
		flex-direction: column;
		/* Coloca el contenido en columna */
		align-items: center;
		justify-content: center;
		/* Centra el contenido verticalmente */
		padding: 10px;
	}

	.countdown-box img.countdown-icon {
		width: 50px;
		/* Ajusta el tamaño del icono */
		height: auto;
		margin-bottom: 10px;
		/* Espacio entre el icono y el texto */
		object-fit: contain;
	}

	.countdown-icon {
		width: 40px;
		/* Ajusta el ancho de la imagen */
		height: auto;
		/* Mantén las proporciones */
		margin-bottom: 10px;
		/* Espacio entre el ícono y el número */
		object-fit: contain;
		/* Asegura que la imagen no se deforme */
		display: block;
		/* Asegura un correcto renderizado */
	}

	.countdown-box p {

		font-size: 10px;
		color: #fff;

	}



	.countdown-box h1 {
		font-size: 13px;
		flex-direction: row;
		align-items: center
	}

	.about-us {
		font-family: "Poppins", serif;
		background-image: url('img/texture.png');
		padding: 50px 20px;
		background: #fff;
	}

	.about-us .container {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		max-width: 1200px;
		margin: 0 auto;
		gap: 20px;
	}

	.about-us .about-text {
		font-family: "Libre Franklin", serif;
		flex: 1 1 60%;
		text-align: left;
		max-width: 600px;
	}

	
	.about-us .about-text h2 {
		font-size: 46px;
		margin-bottom: 20px;
		color: #021846;
	}

	.about-us .about-text h3 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
		color: #021846;
	}

	.about-us .about-text p {
		font-family: "Montserrat", sans-serif;
		font-size: 16px;
		margin-bottom: 15px;
		color: #021846;
	}

	.about-us .about-images {
		flex: 1 1 35%;
		display: flex;
		flex-direction: column;
		gap: 20px;
		position: relative;
		margin-left: 40px;
	}

	.about-us .about-images img {
		width: 100%;
		border-radius: 8px;
		box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	}

	/* Estilos Responsivos */
	@media (max-width: 792px) {
		.about-us .container {
			flex-wrap: wrap;
		}

		.about-us .about-text {
			flex: 1 1 100%;
			text-align: center;
			max-width: 100%;
		}

		.about-us .about-images {
			flex: 1 1 100%;
			margin-left: 0;
		}
	}

	@media (max-width: 768px) {
		.about-us {
			padding: 30px 15px;
		}

		.about-us .about-text h2 {
			font-size: 36px;
		}

		.about-us .about-text h3 {
			font-size: 18px;
		}

		.about-us .about-text p {
			font-size: 14px;
		}

		.about-us .about-images {
			gap: 15px;
		}
	}

	@media (max-width: 480px) {
		.about-us .about-text h2 {
			font-size: 28px;
		}

		.about-us .about-text h3 {
			font-size: 16px;
		}

		.about-us .about-text p {
			font-size: 12px;
		}

		.about-us .about-images img {
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		}
	}


	.speakers {
		position: relative;
		color: white;
		padding: 50px 0;
		text-align: center;
	}

	.speakers .background-image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: none;
		z-index: 1;
	}

	.speakers .container {
		position: relative;
		z-index: 2;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.speakers h3 {
		color: #ff9800;
		;
		font-family: "Bebas Neue", serif;
		font-size: 12;
		padding-top: 30px;
		letter-spacing: 2x;
		text-transform: uppercase;
		margin-bottom: 20x;
		letter-spacing: 3px;
	}


	.speakers h2 {
		font-family: "Bebas Neue", serif;
		font-size: 36px;
		font-weight: bold;
		margin-bottom: 40px;
		letter-spacing: 2px;
	}

	.speaker-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* Dos columnas */
		gap: 20px;
		/* Espaciado entre tarjetas */
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: fit-content;
		/* Centra el grid al contenido */
	}

	/* Estilo general de las tarjetas */
	.speaker-card {
		background-color: #ffffff;
		border-radius: 8px;
		padding: 20px;
		text-align: center;
		max-width: 300px;
		height: 450px;
		/* Establece una altura fija */
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}


	.speaker-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
	}

	.speaker-card img {
		width: 100%;
		height: 300px;
		/* Ajusta la altura aquí */
		object-fit: cover;
		/* Asegura que la imagen se recorte correctamente */
		border-radius: 8px;
		margin-bottom: 15px;
	}


	.speaker-card h4 {
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 5px;
	}



	/* Ajustes para el texto inferior */
	.speakers p {
		font-size: 20px;
		color: #021846;
		max-width: 800px;
		margin: 20px auto 0;
	}

	.speak-p {
		color: #ddd;
	}

	@media (max-width: 768px) {

		.speakers p {
			font-size: 20px;
			color: #021846;
			max-width: 800px;
			margin: 20px auto 0;
		}

	}

	.speakers-info {
		font-size: 15px !important;
		font-family: "montserrat", serif;
		color: white !important;
	}





	.consultoria {
		padding: 50px 20px;
		background: #f9f9f9;
		text-align: center;
	}

	.consultoria h3 {
		font-size: 20px;
		text-transform: uppercase;
		color: #ff9800;
		margin-bottom: 10px;
	}

	.consultoria h2 {
		font-size: 32px;
		font-weight: bold;
		color: #333;
		margin-bottom: 20px;
		letter-spacing: 2px;
	}

	/* Estilo para la imagen */
	.center-image-container {
		max-width: 100%;
		/* Asegúrate de que el contenedor no desborde */
		margin: 20px auto;
		text-align: center;
	}

	.center-image-container img {
		max-width: 100%;
		height: auto;
		/* Mantiene la proporción de la imagen */
		display: block;
		/* Centra la imagen */
		margin: 0 auto;
	}

	/* Estilos responsivos */
	@media (max-width: 768px) {
		.consultoria {
			padding: 30px 15px;
		}

		.consultoria h3 {
			font-size: 18px;
		}

		.consultoria h2 {
			font-size: 28px;
			letter-spacing: 1px;
		}
	}

	@media (max-width: 480px) {
		.consultoria {
			padding: 20px 10px;
		}

		.consultoria h3 {
			font-size: 16px;
		}

		.consultoria h2 {
			font-size: 24px;
			letter-spacing: 0.5px;
		}
	}


	.success-cases {
		text-align: center;
		padding: 50px 20px;
		background-color: #ffffff;
	}

	.success-cases h2 {
		font-size: 24px;
		font-weight: bold;
		margin-bottom: 20px;
		text-transform: uppercase;
	}

	.success-cases .dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-bottom: 20px;
	}

	.success-cases .dot {
		width: 30px;
		height: 30px;
		background-color: #ccc;
		border-radius: 50%;
	}

	.success-cases p {
		font-size: 16px;
		color: #555;
		max-width: 600px;
		margin: 0 auto;
	}


	.consultoria {
		padding: 50px 20px;
		background: #f9f9f9;
		text-align: center;
	}

	.consultoria h3 {
		font-size: 16px;
		text-transform: uppercase;
		color: #ff9800;
		margin-bottom: 10px;
	}

	.consultoria h2 {
		font-size: 28px;
		font-weight: bold;
		color: #021846;
		margin-bottom: 20px;
	}



	.center-image-container {
		margin: 20px auto;
		/* Centra la imagen y añade espaciado */
		text-align: center;
	}



	/* Footer general */
	.footer {
		background-color: #1a1a3c;
		color: #fff;
		padding: 40px 20px;
		text-align: center;
		font-family: 'Arial', sans-serif;
	}

	.footer-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		max-width: 1200px;
		margin: 0 auto;
		gap: 20px;
	}

	/* Sección del logo */
	.footer-logo {
		flex: 1 1 30%;
		text-align: left;
	}

	.logo-img {
		width: 100px;
		margin-bottom: 10px;
	}

	.footer-logo p {
		font-size: 14px;
		color: #ccc;
	}

	/* Sección de eventos */
	.footer-events {
		flex: 1 1 30%;
		text-align: left;
	}

	.footer-events h3 {
		font-size: 18px;
		margin-bottom: 10px;
		color: #ff4081;
	}

	.footer-events p {
		font-size: 14px;
		margin: 5px 0;
		color: #ddd;
	}

	.footer-events .highlight {
		color: #ff9800;
		font-weight: bold;
	}

	.footer-events .link {
		font-size: 14px;
		text-decoration: none;
		color: #ff4081;
		margin-top: 10px;
		display: inline-block;
	}

	.footer-events .link:hover {
		text-decoration: underline;
	}

	/* Sección de actualizaciones sociales */
	.footer-social {
		flex: 1 1 30%;
		text-align: left;
	}

	.footer-social h3 {
		font-size: 18px;
		margin-bottom: 10px;
		color: #ff4081;
	}

	.footer-social p {
		font-size: 14px;
		color: #ddd;
		margin-bottom: 10px;
	}

	.social-icons {
		display: flex;
		gap: 5px;
	}

	.social-btn {
		background-color: #333;
		color: #fff;
		border: none;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.social-btn:hover {
		background-color: #555;
	}

	.social-btn.active {
		background-color: #ff4081;
	}