/*--font-family: "Space Grotesk", serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/*--font-family: "Roboto", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*----*/
/*====== STYLES GENERALES ==========*/
body {
    padding: 0;
    margin: 0;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75rem;
}
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    margin: 0 auto;
    background: #fff;
}
.imgLogoCard {
    background: url(../img/Prozus_Background.png) no-repeat center #333;
    padding: 0 90px;
    text-align: center;
    height: 100vh;
    background-size: cover;
    position: relative;
}
.imgLogoCard .content{
	position: relative;
	z-index: 2;
	top: 40%;
}
.imgLogoCard .content .logo{
	background: rgb(0 0 0 / 50%);
	padding: 15px 20px;
	border-radius: 15px;
	margin: 30px 0;
	height: 110px;
	vertical-align: middle;
	display: flex;
	align-items: center;
}
.imgLogoCard .content .logo img{
	width: 90%;
	margin: 0 auto;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 1;
}
/* Floating Chat Button */
.chat-button {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #0066cc;
	color: white;
	border: none;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	transition: transform 0.2s ease;
	z-index: 1000;
}

.chat-button:hover {
	transform: scale(1.1);
}

/* Chat Window */
.chat-container {
	position: fixed;
	bottom: 100px;
	right: 25px;
	width:400px;
	height: 500px;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
	display: none;
	flex-direction: column;
	z-index: 999;
}

/* Header */
.chat-header {
	height: 65px;
	background: #0066cc;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	color: white;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-logo {
	width: 45px;
	height: 45px;
	object-fit: contain;
	background: white;
	border-radius: 50%;
	padding: 4px;
}

.chat-title {
	font-size: 16px;
	font-weight: bold;
}

.close-btn {
	background: transparent;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.close-btn:hover {
	opacity: 0.8;
}

/* Iframe */
.chat-iframe {
	width: 100%;
	height: calc(100% - 65px);
	border: none;
}

/* Mobile */
@media (max-width: 480px) {
	.chat-container {
		width: calc(100vw - 20px);
		height: 80vh;
		right: 10px;
		left: 10px;
		bottom: 90px;
	}
}
/*================================================
//--//--> SMALL DEVICES (landscape phones, 576px and up)
==================================================*/
@media (min-width: 320px) and (max-width: 767.98px) {	
	.imgLogoCard {
		height: 100%;
		padding: 45px 30px;
	}
	.no-gutter{
		padding-top:95px;
	}
	.imgLogoCard .content .logo {
		background: rgb(0 0 0 / 50%);
		padding: 32px 20px;
		border-radius: 15px;
		margin: 30px 0;
		height: 110px;
		vertical-align: middle;
		display: flex	;
		align-items: center;
	}
}

/*================================================
//--//--> MEDIUM DEVICES (tablets, 768px and up)
==================================================*/
@media (min-width: 768px) and (max-width: 1023.98px) {
	.imgLogoCard {
		height: 100%;
		padding: 45px 30px;
	}
	.no-gutter{
		padding-top:115px;
	}
}