/* ===== ESTILOS BASE ===== */
body {
    background-color: #F2F2F2;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}

p {
	line-height: 1;
	text-wrap: pretty;
	font-weight: 500;
}

/* ===== CONTENEDORES COMUNES ===== */
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
}

/* ===== SECCIÓN HERO ===== */
.hero {
    height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	overflow: hidden;
	padding: 60px 0;
	gap: 60px;
}

/* Swiper Hero Styles */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Navigation arrows */
.hero-nav-next,
.hero-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-next::after,
.hero-nav-prev::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.hero-nav-prev::after {
    transform: rotate(-135deg);
}

.hero-nav-next {
    right: 30px;
}

.hero-nav-prev {
    left: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-nav-next,
    .hero-nav-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-next {
        right: 20px;
    }
    
    .hero-nav-prev {
        left: 20px;
    }
    
    .hero-nav-next::after,
    .hero-nav-prev::after {
        width: 10px;
        height: 10px;
    }
}

.title-container {
	max-width: 1300px;
	margin: 0 auto;
    padding: 120px 20px 20px 25px;
	text-align: left;
	width: 100%;
	z-index: 10;
	position: absolute;
	top: 0;
	background: transparent;
}

.title-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg,
		rgba(0, 0, 0, 0.6) 0%,
		rgba(0, 0, 0, 0.4) 50%,
		rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.title-container h1 {
	color: white;
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 500;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1;
	position: relative;
	z-index: 10;
}

.title-container h1 span {
	color: #3CCDB4;
}

/* ===== PILLS COMPONENT ===== */
.pills-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: fit-content;
}

.pill {
	background: rgba(83, 86, 89, 0.6);
	border: 1px solid #fff;
	border-radius: 30px;
	padding: 0;
	width: 90%;
	min-width: 350px;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pill-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    border-radius: 50px;
}

.pill[data-expanded="true"] .pill-header {
    background: #fff;
    color: #000;
}

.pill[data-expanded="true"] .pill-header .pill-header-icon {
    border: 1px solid #000;
}

.pill[data-expanded="true"] .pill-header .pill-header-title {
    color: #000;
}

.pill-header-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
    border: 1px solid #fff;
	flex-shrink: 0;
}

.pill-header-icon::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: clamp(1rem, 3vw, 1.125rem);
	font-weight: bold;
	line-height: 1;
	transition: color 0.3s ease;
}

.pill[data-expanded="true"] .pill-header-icon::before {
    content: '-';
    color: #000;
    transform: translate(-50%, -50%);
}

.pill-header-title {
	color: white;
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 500;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.pill-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
}

.pill[data-expanded="true"] .pill-content {
	max-height: 200px;
    visibility: visible;
    opacity: 1;
}

.pill-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pill-content li {
	padding: 12px 0px;
    display: flex;
    justify-content: flex-start;
	width: max-content;
    align-items: center;
    gap: 10px;
	margin: 0 auto;
}

.pill-content li a {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.pill-content-text {
	color: white;
	font-size: clamp(0.75rem, 2.5vw, 0.875rem);
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pill-content-text svg {
	width: 160px;
	height: 22px;
	transition: all 0.3s ease;
}

.pill-content-text svg:hover path, 
.pill-content-text svg:hover .cls-1 {
	fill: #256CB6;
}

/* ===== ESTILOS COMUNES PARA SECCIONES ===== */
.section-base {
	padding: 40px 0;
}

.section-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-block {
	border-radius: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.section-title {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: #1A1A1A;
	margin: 30px 0 20px 0;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
}

.section-text {
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	color: #060606;
	margin: 0 0 20px 0;
	text-wrap: pretty;
}

/* ===== BOTÓN VER MÁS COMÚN ===== */
.see-more-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #F2F2F2;
	background: transparent;
	color: #F2F2F2;
	text-decoration: none;
	transition: all 0.3s ease;
	user-select: none;
	cursor: pointer;
}

.see-more-btn span {
	font-size: clamp(1.125rem, 3vw, 1.25rem);
	font-weight: bold;
	line-height: 1;
}

/* ===== SECCIÓN 0 - VIDEO ===== */
.sec-0 {
	padding: 60px 0;
}

.sec-0 .container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.sec-0 iframe {
	width: 100%;
	height: 300px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===== SECCIÓN 1 ===== */
.sec-1 {
	padding: 40px 0;
	--block-max-width: 50%;
	--left-block-padding-mobile: 30px;
	--left-block-padding-desktop: 30px 70px;
}

.sec-1 .container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.sec-1 .left-block, .sec-1 .right-block {
	border-radius: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.sec-1 .left-block {
	background: #CCC;
	padding: var(--left-block-padding-mobile);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sec-1 .right-block {
	background: transparent;
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec-1 .left-block img {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.sec-1 .left-block-title {
	font-size: clamp(1.5rem, 4vw, 2.1875rem);
	font-weight: 500;
	color: #1A1A1A;
	margin: 0 0 20px 0;
	line-height: 1;
}

.left-block-text {
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	color: #060606;
	margin: 0 0 20px 0;
	text-wrap: pretty;
}

.sec-1 .left-block-text:last-child {
	margin-bottom: 0;
}

.sec-1 .right-block picture {
	width: 100%;
	height: 100%;
}

.sec-1 .right-block img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

/* ===== SECCIÓN 2 ===== */
.sec-2 {
	padding: 40px 0;
}

.sec-2 .container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
}

.sec-2 .block {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: stretch;
	width: 100%;
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sec-2 .left-block {
	background: #1A1A1A;
	padding: 40px 30px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: start;
	position: relative;
	min-height: 400px;
}

.sec-2 .right-block {
	background: transparent;
	padding: 0;
	overflow: hidden;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}

.sec-2 .left-block-title {
	font-size: clamp(1.5rem, 4vw, 2.1875rem);
	font-weight: 500;
	color: #F2F2F2;
	margin: 0 0 20px 0;
	line-height: 0.9;
}

.sec-2 .left-block-text {
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	color: #F2F2F2;
	margin: 0 0 20px 0;
	text-wrap: pretty;
}

.sec-2 .left-block-text:last-of-type {
	margin-bottom: 30px;
}

.sec-2 .left-block-text.hidden {
	max-height: 0;
	overflow: hidden;
	margin: 0;
	transition: all 0.3s ease;
	opacity: 0;
}

.sec-2 .left-block-text.hidden.show {
	max-height: 200px;
	margin: 0 0 20px 0;
	opacity: 1;
}

.sec-2 .right-block img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	min-height: 390px;
	max-width: 720px;
}

/* ===== SECCIÓN 3 ===== */
.sec-3 {
	position: relative;
	max-width: 1300px;
	margin: 40px auto;
	padding: 0 20px;
	overflow: hidden;
}

.sec-3 .banner {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border-radius: 0;
	object-fit: cover;
}

.sec-3 .container {
    position: absolute;
    top: 0;
    max-width: 1300px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sec-3 .container .title {
	font-size: clamp(1.25rem, 4vw, 1.875rem);
	color: #1A1A1A;
	margin: 30px 20px 20px 20px;
	line-height: 1;
	font-weight: 500;
}

/* ===== SECCIÓN 4 ===== */
.sec-4 {
	padding: 40px 5px;
}

.sec-4 .container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.sec-4 .block {
	display: flex;
	flex-direction: column;
	background: transparent;
	border-radius: 15px;
	overflow: hidden;
	min-height: 400px;
}

.sec-4 .left-block {
	background-color: #3CCDB4;
	color: #060606;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	min-height: 400px;
}

.sec-4 .left-block-title {
	color: #060606;
	font-size: clamp(1.125rem, 4vw, 1.125rem);
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 500;
}

.sec-4 .left-block-text {
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	margin-bottom: 16px;
}

.sec-4 li .left-block-text {
	margin-bottom: 2px;
}

.sec-4 .left-block-text.hidden {
	max-height: 0;
	overflow: hidden;
	margin: 0;
	transition: all 0.3s ease;
	opacity: 0;
}

.sec-4 .left-block-text.hidden.show {
	max-height: 200px;
	margin: 0 0 20px 0;
	opacity: 1;
}

.sec-4 .right-block {
	flex: 1;
	padding: 0;
	background: transparent;
	min-height: 400px;
	overflow: hidden;
	position: relative;
}

.sec-4 .right-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	min-height: 400px;
}

.sec-4 .see-more-btn-container {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.sec-4 .see-more-btn {
	background-color: #F2F2F2;
	color: #1A1A1A;
	font-size: clamp(1rem, 3vw, 1.2rem);
	font-weight: bold;
	border: none;
	text-decoration: none;
}

.sec-4 .see-more-btn:hover {
	background-color: #E0E0E0;
	transform: scale(1.1);
}

/* ===== SECCIÓN 5 ===== */
.sec-5 {
	display: none;
	padding: 40px 20px;
}

.sec-5 .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5px;
	overflow: hidden;
}

.sec-5 .container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	min-height: 400px;
}

/* ===== SECCIÓN 6 - SERVICIOS ===== */
.sec-6 {
	padding: 40px 20px;
}

.sec-6 .container {
	max-width: 1300px;
	margin: 0 auto;
}

.sec-6 .title {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: #1A1A1A;
	margin: 30px 0 20px 0;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
}

.sec-6 .services-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sec-6 .services-container .services-row {
	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sec-6 .services-container .services-row .services-item {
	flex: 0 0 100%;
}

.services-rows {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
	width: 100%;
}

.service-item {
	flex: 0 1 calc(33.333% - 20px);
	max-width: calc(33.333% - 20px);
	border-radius: 8px;
	overflow: hidden;
}

.service-header {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.service-icon {
	font-size: 16px;
	margin-right: 12px;
	font-weight: bold;
	color: #53565A;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #53565A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	min-width: 30px;
	flex-shrink: 0;
}

.service-header h3 {
	margin: 0;
	font-size: clamp(1.25rem, 3.5vw, 1.5625rem);
	font-weight: 600;
	color: #1A1A1A;
	line-height: 1;
}

.service-content {
	padding: 20px;
}

.service-content p {
	margin: 0;
	color: #1A1A1A;
	font-size: clamp(.75rem, 2.5vw, .875rem);
}

/* ===== SECCIÓN 7 - NOTICIAS ===== */
.sec-7 {
	padding: 60px 20px;
}

.sec-7 .container {
	max-width: 1300px;
	margin: 0 auto;
}

.sec-7 .title {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: #1A1A1A;
	margin: 0 0 40px 0;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
	align-items: stretch;
}

.news-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	max-width: 400px;
}

.news-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #6BCBB5 0%, #53565A 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
}

.news-content {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-date {
	font-size: .75rem;
	color: #1A1A1A;
	font-weight: 400;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.news-title {
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	font-weight: 500;
	color: #1A1A1A;
	margin: 0 0 15px 0;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 2.6rem;
}

.news-description {
	font-size: .875rem;
	color: #1A1A1A;
	margin: 0 0 20px 0;
	flex: 1;
	overflow: hidden;
	line-height: 1.4;
	display: -webkit-box;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.news-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0071BC;
	font-weight: 600;
	font-size: clamp(.875rem, 2vw, 1rem);
	text-decoration: none;
	transition: color 0.3s ease;
	margin-top: auto;
}

.news-link:hover {
	color: #6BCBB5;
	text-decoration: none;
}

.news-link .arrow {
	transition: transform 0.3s ease;
}

.news-link:hover .arrow {
	transform: translateX(5px);
}

/* ===== ESTILOS PARA EL SLIDER DE NOTICIAS ===== */
.news-slider.owl-carousel {
	display: block !important;
}

.news-slider.owl-carousel .news-card {
    margin: 20px auto;
    max-width: 405px;
    width: 100%;
}

.news-slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
	padding: 0;
}

.news-slider.owl-carousel .owl-dot {
	display: inline-block;
	margin: 0 8px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(26, 26, 26, 0.3);
	border: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.news-slider.owl-carousel .owl-dot.active {
	background: #0071BC;
	transform: scale(1.2);
}

.news-slider.owl-carousel .owl-dot:hover {
	background: #6BCBB5;
}

.news-slider.owl-carousel .owl-nav {
	margin-top: 20px;
	text-align: center;
}

.news-slider.owl-carousel .owl-nav button {
	background: #1A1A1A !important;
	color: white !important;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.news-slider.owl-carousel .owl-nav button:hover {
	background: #0071BC !important;
	transform: scale(1.1);
}

.news-slider.owl-carousel .owl-nav button.owl-prev,
.news-slider.owl-carousel .owl-nav button.owl-next {
	outline: none;
}

.news-slider.owl-carousel.owl-loaded {
	display: block !important;
}

.news-slider.owl-carousel.owl-loaded .news-grid {
    display: none;
}

.news-slider.owl-carousel:not(.owl-loaded) {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    align-items: stretch !important;
}

/* ===== SECCIÓN 8 ===== */
.sec-8 {
	padding: 40px 0;
	background-color: #3CCDB4;
}

.sec-8 .container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	gap: 30px;
	align-items: center;
}

.sec-8 .block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.sec-8 .left-block, .sec-8 .right-block {
	flex: 1;
}

.sec-8 .left-block .description {
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	color: #060606;
	margin: 10px 0 20px 0;
	text-wrap: pretty;
}

.sec-8 .title {
	font-size: clamp(1.5rem, 4vw, 3.125rem);
	font-weight: 400;
	color: #060606;
	line-height: 1;
	display: flex;
	align-items: center;
}

.sec-8 .title .fidocar-circle {
	background: url('/packages/assets/website/images/work-with-us-logo.svg') no-repeat center center;
	width: 90px;
	height: 90px;
	margin-right: 10px;
}

.sec-8 .left-block .buttons-container {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: start;
}

.sec-8 .left-block .buttons-container .button {
	padding: 10px 20px;
	border-radius: 50px;
	background-color: #1A1A1A;
	color: #CCC;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.sec-8 .left-block .buttons-container .button:hover {
	background-color: #060606;
	color: #fff;
}

.sec-8 .right-block {
	overflow: hidden;
	border-radius: 40px;
	max-height: 300px;
}

.sec-8 .right-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== MEDIA QUERIES - TABLET (768px+) ===== */
@media screen and (min-width: 768px) {
	/* Hero */
	.hero {
		padding-top: 200px;
		justify-content: center;
	}

	.title-container {
		padding: 120px 0px 0 0px;
	}

	/* Pills */
	.pills-container {
		flex-direction: row;
		justify-content: center;
		flex-wrap: nowrap;
		gap: 20px;
		align-items: flex-start;
	}
	
	.pill {
		min-width: 300px;
		max-width: 320px;
		width: auto;
	}

    .pill[data-expanded="true"] .pill-header {
        position: relative;
        z-index: 2;
    }
	
    .pill-content {
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        z-index: 1;
        margin-top: 0px;
        padding-top: 60px;
        padding-bottom: 30px;
        pointer-events: none;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transform: translateY(-10px);
    }

    .pill[data-expanded="true"] .pill-content {
        pointer-events: auto;
		border: 1px solid #fff;
        opacity: 1;
        transform: translateY(0);
    }

	/* Video */
	.sec-0 iframe {
		height: 400px;
	}

	.sec-2 .right-block img {
		min-height: 590px;
	}

	/* Sección 1 */
	.sec-1 {
		padding: 60px 0;
	}

	.sec-1 .container {
		flex-direction: row;
		justify-content: center;
		gap: 40px;
		align-items: stretch;
	}

	.sec-1 .left-block {
		flex: 1;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.sec-1 .right-block {
		flex: 1;
		padding: 0;
		overflow: hidden;
	}

	/* Sección 2 */
	.sec-2 {
		padding: 60px 0;
	}

	.sec-2 .block {
		flex-direction: row;
		max-width: 1300px;
		margin: 0 auto;
	}

	.sec-2 .left-block {
		flex: 0 0 45%;
		padding: 40px 30px;
		border-radius: 40px 0 0 40px;
	}

	.sec-2 .right-block {
		flex: 1;
		border-radius: 0 40px 40px 0;
	}

	.sec-2 .see-more-btn-container {
		bottom: 30px;
		left: 30px;
	}

	/* Sección 3 */
	.sec-3 .banner {
		min-height: unset;
	}

	.sec-3 .container .title {
		margin: 60px 20px 20px 20px;
	}

	/* Sección 4 */
	.sec-4 {
		padding: 60px 20px;
	}

	.sec-4 .block {
		flex-direction: row;
		max-width: 1300px;
		margin: 0 auto;
		flex-direction: column;
	}

	.sec-4 .left-block {
		flex: 0 0 45%;
		padding: 40px 30px;
		border-radius: 40px 40px 0px 0px;
	}

	.sec-4 .right-block {
		flex: 1;
		border-radius: 0px 0px 40px 40px;
	}

	.sec-4 .see-more-btn-container {
		bottom: 30px;
		left: 30px;
	}

	/* Sección 5 */
	.sec-5 {
		display: block;
	}

	/* Sección 7 - Noticias */
	.sec-7 {
		padding: 40px 20px;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news-image {
		height: 180px;
	}
	
	.news-content {
		padding: 20px;
	}
	
	.news-slider.owl-carousel:not(.owl-loaded) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

	/* Sección 8 */
	.sec-8 .block {
		display: flex;
    	align-items: center;
    	gap: 40px;
		flex-direction: row;
	}

	/* Servicios */
	.services-rows {
		gap: 20px;
	}
	
	.service-item {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

/* ===== MEDIA QUERIES - DESKTOP (1024px+) ===== */
@media screen and (min-width: 1024px) {
	/* Hero */
	.title-container {
		padding: 170px 0px 0 0px;
	}

	.pill {
		max-width: 350px;
		width: auto;
	}

	.pill:hover {
		background: rgba(0, 0, 0, 1);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

	/* Video */
	.sec-0 {
		padding: 80px 0;
	}
	
	.sec-0 iframe {
		height: 500px;
	}

	/* Sección 1 */
	.sec-1 {
		padding: 80px 0;
		--left-block-padding: 50px;
	}

	.sec-1 .container {
		gap: 30px;
	}

	.sec-1 .left-block {
		padding: var(--left-block-padding-desktop);
	}

	.sec-1 .right-block {
		padding: 0;
		overflow: hidden;
	}

	.sec-1 .left-block img {
		width: 80px;
		height: 80px;
	}

	/* Sección 2 */
	.sec-2 {
		padding: 80px 0;
	}

	.sec-2 .block {
		max-height: 590px;
	}

	.sec-2 .left-block {
		flex: 0 0 54%;
		padding: 60px 70px;
		border-radius: 40px 0 0 40px;
	}

	.sec-2 .right-block {
		flex: 1;
		border-radius: 0 40px 40px 0;
	}

	.sec-2 .see-more-btn-container {
		bottom: 70px;
		left: 70px;
	}

	/* Sección 3 */
	.sec-3 {
		min-height: 400px;
	}

	.sec-3 .container .title {
		margin: 90px 20px 20px 20px;
	}

	/* Sección 4 */
	.sec-4 {
		padding: 80px 0;
	}

	.sec-4 .block {
		flex-direction: row-reverse;
		max-width: 1300px;
		margin: 0 auto;
	}

	.sec-4 .left-block {
		flex: 0 0 53%;
		padding: 50px 40px;
		border-radius: 0 40px 40px 0;
	}

	.sec-4 .right-block {
		flex: 1;
		border-radius: 40px 0 0 40px;
	}

	.sec-4 .see-more-btn-container {
		bottom: 40px;
		right: 40px;
		left: auto;
	}

	/* Sección 7 - Noticias */
	.sec-7 {
		padding: 80px 20px;
	}
	
	.news-grid {
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 40px;
	}

	/* Servicios */
	.service-item {
		min-height: 120px;
	}
}

/* ===== MEDIA QUERIES - MÓVIL (max-width: 768px) ===== */
@media (max-width: 768px) {
	.sec-7 {
		padding: 40px 20px;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news-image {
		height: 180px;
	}
	
	.news-content {
		padding: 20px;
	}
	
	.news-slider.owl-carousel .owl-nav {
		display: none;
	}

	.news-slider.owl-carousel:not(.owl-loaded) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

	.services-rows {
		gap: 20px;
	}
	
	.service-item {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
