.hero {
	background-image: url('../../images/services-home.webp');
	/* background-image: url('../../images/solutions_banner_v2.webp'); */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 390px;
	position: relative;
	overflow: hidden;
	left: 50%;
	border-radius: 10px;
	transform: translateX(-50%);
}

/* Solutions Section */
.solutions {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.solutions .text {
	margin-bottom: 30px;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #242020;
}

.solutions .text.blue-text {
	color: var(--azul);
	font-size: 1.3125rem;
	font-style: normal;
	font-weight: 700;
}

.tabs-container {
	max-width: 1200px;
	margin: 0 auto;
}

.tabs-selector {
	margin-bottom: 40px;
}

.tabs-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e0e0e0;
	overflow: hidden;
}

.tab-item {
	position: relative;
}

.tab-link {
	display: block;
	padding: 20px 24px;
	text-decoration: none;
	color: #A6A39C;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: all 0.3s ease;
	position: relative;
}

.tab-link p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.4;
	text-align: center;
	font-family: 'Diagramm', sans-serif;
}

.tab-item .tab-link {
	border-bottom: 4px solid transparent;
}

.tab-item.active .tab-link {
	color: var(--azul);
	border-bottom: 4px solid #124069;
}

.tab-item.active .tab-link::after {
	display: none;
}

.tabs-content {
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content {
    padding: 32px;
}
.tab-content > * + * {
    margin-top: 1rem;
}
.tab-content p,
.tab-content li {
    line-height: 1.7;
}
.tab-content ul {
    padding-left: 1.25rem;
}

.vertical-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.vertical-block .block {
	width: 100%;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
}

.vertical-block .block:first-child {
	border-radius: 0 66px 0 0;
}

.vertical-block .block:first-child img {
	width: 100%;
}

.vertical-block .block:last-child {
	border-radius: 0 0 0 66px;
	background-color: #F5F5F5;
	padding: 50px 90px;
}

.vertical-block .block:last-child .text {
	color: #000;
	font-family: "Neue Haas Unica", sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-content .title {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}




.solutions .two-blocks {
	display: flex;
	gap: 24px;
	margin: 50px 0;
}
.solutions .two-blocks.reverse {
	flex-direction: row-reverse;
}

.solutions .two-blocks .block {
	width: 50%;
	overflow: hidden;
	box-sizing: border-box;
}

.solutions .two-blocks .block:first-child {
	border-radius: 0 0 0 0;
	background-color: #F5F5F5;
	color: #000;
	font-family: "Neue Haas Unica", sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	padding: 60px;
}

.solutions .two-blocks .block:last-child  {
	border-radius: 0 0 88px 0;
	background: #FFF;
}

.solutions .two-blocks.reverse .block:first-child {
	border-radius: 0 0 0 0;
}

.solutions .two-blocks.no-border .block:first-child,
.solutions .two-blocks.no-border .block:last-child  {
	border-radius: unset;
}

.solutions .two-blocks.reverse.rounded-br .block:first-child {
	border-radius: 0 0 88px 0;
}

.solutions .two-blocks.reverse.rounded-br .block:last-child {
	border-radius: unset;
}

.solutions .two-blocks.reverse .block:last-child {
	border-radius: 88px 0 0 0;
}

.solutions .two-blocks .block:last-child img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
}

/* Zoom */
.zoom-block {
    cursor: crosshair;
}
.zoom-block .zoom-pane {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: calc(var(--zoom-level, 2) * 100%) calc(var(--zoom-level, 2) * 100%);
    background-position: var(--x, 50%) var(--y, 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}
.zoom-block.is-zooming .zoom-pane {
    opacity: 1;
}

/* Modal */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.zoom-modal__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.zoom-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 1024px) {
	.tabs-container {
		padding: 0 20px;
	}

	.vertical-block .block:last-child {
		padding: 60px 60px;
	}

	.solutions .two-blocks {
		margin: 50px 0;
	}

	.solutions .two-blocks .block:first-child {
		padding: 40px 30px;
	}
}

@media (max-width: 768px) {
	.tabs-container {
		padding: 0 12px;
	}

	.tabs-selector {
		margin-bottom: 30px;
	}

	.tabs-list {
		flex-direction: column;
		border-bottom: none;
	}

	.tab-item {
		width: max-content;
	}

	.tab-link {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding: 12px 16px;
	}

	.tab-link p {
		font-size: 1rem;
		text-align: start;
	}

    .tab-content {
        padding: 16px;
    }
    .tab-content > * + * {
        margin-top: 0.75rem;
    }

	.tab-content .title {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.tabs-content {
		min-height: 300px;
	}

	.vertical-block .block:last-child {
		padding: 30px 40px;
	}

	.solutions .two-blocks {
		flex-direction: column;
		margin: 40px 0;
		gap: 20px;
	}

	.solutions .two-blocks.reverse {
		flex-direction: column;
	}

	.solutions .two-blocks .block {
		width: 100%;
	}

	.solutions .two-blocks .block:first-child {
		padding: 30px 25px;
		border-radius: 30px 0 0 0;
		font-size: 0.9rem;
		line-height: 26px;
		padding: 25px;
	}

	.solutions .two-blocks .block:last-child {
		border-radius: 0 0 30px 0;
	}

	.solutions .two-blocks.reverse
	.block:first-child {
		border-radius: 0 0 30px 0;
	}

	.solutions .two-blocks.reverse .block:last-child {
		border-radius: 30px 0 0 0;
	}
}

@media (max-width: 480px) {
	.vertical-block .block:last-child {
		padding: 25px 30px;
	}

	.tabs-container {
		padding: 0 10px;
	}

	.solutions .two-blocks {
		margin: 30px 0;
		gap: 15px;
	}

	.solutions .two-blocks .block:first-child {
		padding: 25px 20px;
		border-radius: 25px 0 25px 0;
		font-size: 0.85rem;
		line-height: 22px;
		padding: 20px;
	}

	.solutions .two-blocks .block:last-child {
		border-radius: 0 0 25px 0;
	}

	.solutions .two-blocks.reverse {
		flex-direction: column;
	}

	.solutions .two-blocks.reverse .block:first-child {
		border-radius: 25px 0 0 0 !important;
	}

	.solutions .two-blocks .block:last-child img {
		display: none;
		border-radius: 0 0 25px 0;
	}

	.solutions .two-blocks.reverse .block:last-child {
		border-radius: 0 0 25px 0;
	}
    .tab-content {
        padding: 12px;
    }
    .tab-content > * + * {
        margin-top: 0.6rem;
    }
	.tab-link {
		padding: 10px 12px;
	}
}
