:root {
	--accent-color: #1c953f;
	--accent-rgb: 28, 149, 63;
	--border-radius: 0.375rem;
	--box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --dark-color: #343a40;
	--dark-green: #024922;
	--light-color: #f8f9fa;
	--light-green: #c2de7a;
	--primary-color: #673a21;
	--primary-rgb: 103, 58, 33;
	--secondary-color: #03652e;
	--secondary-rgb: 3, 101, 46;
    --text-color: #495057;
    --text-muted: #6c757d;
	--transition: all 0.3s ease
}

a {
    color: var(--primary-color);
    text-decoration: none;
	transition: var(--transition)
}

a:hover {
	color: var(--secondary-color)
}

body {
	background-color: #f9f9f9;
	color: var(--text-color);
	font-family: 'Raleway', sans-serif;
	line-height: 1.6
}

footer {
	background-color: var(--secondary-color)
}

footer a {
	transition: color 0.3s ease
}


h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700
}

section {
    overflow: hidden;
	position: relative
}

section.bg-light {
	background-color: #f8f9fa;
	padding: 5rem 0;
	position: relative
}

section.bg-light:after {
	background: linear-gradient(to top, white 0%, rgba(255,255,255,0) 100%);
	bottom: 0
}

section.bg-light:after, section.bg-light:before {
	content: '';
	height: 50px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	z-index: 1
}

section.bg-light:before {
	background: linear-gradient(to bottom, white 0%, rgba(255,255,255,0) 100%);
	top: 0
}

section.py-5 .img-fluid {
	border: 3px solid rgba(var(--accent-rgb), 0.2);
	transition: all 0.3s ease
}

section.py-5 .img-fluid:hover {
	border-color: var(--accent-color);
	box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.15);
	transform: scale(1.01)
}

section.py-5 .lead {
	color: var(--text-color)
}

section.py-5 .list-unstyled li {
	color: var(--text-color)
}

section.py-5 .list-unstyled li i {
	color: var(--secondary-color)
}

#hero-splide {
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid rgba(var(--secondary-rgb), 0.08);
	box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.12);
	margin: 0 auto;
	max-width: 1080px;
	overflow: hidden;
	position: relative;
	transition: all 0.5s ease-in-out
}

.about-header {
	background-color: var(--primary-color);
	background-image: linear-gradient(225deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
	background-size: 85px 85px
}

.about-header .providers-header-title {
	border-bottom: 2px solid rgba(255,255,255,0.8);
	text-shadow: 1px 1px 3px rgba(0,0,0,0.4)
}

.about-header::before {
	background: linear-gradient(to right, rgba(var(--primary-rgb), 0.75), rgba(var(--accent-rgb), 0.85));
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.avatar-placeholder {
	color: var(--text-muted)
}

.badge-destacado {
	background-color: #e74c3c;
	border-radius: 4px;
	color: white;
	padding: 0.5rem;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 10
}

.badge.bg-primary {
	background-color: #03652e !important
}

.badge.bg-secondary {
	background-color: var(--accent-color) !important
}

.bg-light {
	background-color: rgba(var(--accent-rgb), 0.05) !important
}

.bg-primary {
	background-color: #03652e !important
}

.bg-secondary {
	background-color: var(--accent-color) !important
}

.btn {
	border-radius: var(--border-radius);
	font-weight: 500;
	padding: 0.5rem 1.25rem;
	transition: var(--transition)
}

.btn-outline-primary {
	border-color: #03652e;
	color: #03652e
}

.btn-outline-primary:active, .btn-outline-primary:focus, .btn-outline-primary:hover {
	background-color: #03652e !important;
	border-color: #03652e !important;
	box-shadow: 0 4px 8px rgba(3,101,46,0.25);
	color: white;
	transform: translateY(-2px)
}

.btn-primary {
	background-color: #03652e;
	border-color: #1c953f;
	color: white
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
	background-color: #024922;
	border-color: #1c953f;
	color: white
}

.card {
	border-radius: var(--border-radius);
	border: none;
    overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease
}

.card .card-body {
	padding: 1.5rem
}

.card .card-text {
	color: var(--text-color);
	margin-bottom: 1.25rem
}

.card .card-title {
	color: var(--primary-color);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.card-img-top {
	transition: transform 0.5s ease;
    height: 220px;
    object-fit: cover;
}

/* Estilos para contenedor de productos sin imagen */
.no-image-container {
    background-color: #f5f5f5;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.no-image-content {
    color: #adb5bd;
    padding: 20px;
}

.no-image-content i {
    opacity: 0.5;
    margin-bottom: 10px;
}

.no-image-content p {
    font-size: 14px;
    opacity: 0.7;
}

/* Estilo para tarjetas de producto sin imagen al hacer hover */
.card:hover .no-image-container {
    background-color: #eaeaea;
}

.card:hover {
	box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.12);
	transform: translateY(-5px)
}

.card:hover .card-img-top {
	transform: scale(1.05)
}

.categoria-card {
	align-items: center;
	border-radius: 0.5rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
	min-height: 200px;
	overflow: hidden;
	position: relative
}

.categoria-card-content {
	color: white;
	padding: 1rem;
	position: relative;
	text-align: center;
	z-index: 2
}

.categoria-card-img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: transform 0.5s ease;
	width: 100%
}

.categoria-card::before {
	background: rgba(0,0,0,0.4);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.categoria-card:hover .categoria-card-img {
	transform: scale(1.1)
}

.categories-section {
	padding: 4rem 0
}

.category-btn {
	background: transparent;
	border: 2px solid #fff;
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	transition: all 0.3s ease
}

.category-btn:hover {
	background: #2a7d45;
	border-color: #2a7d45;
	color: #fff
}

.category-card {
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	height: 400px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease
}

.category-card:hover {
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	transform: translateY(-10px)
}

.category-card:hover .category-img {
	transform: scale(1.1)
}

.category-content {
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 2rem;
	position: absolute;
	width: 100%;
	z-index: 1
}

.category-img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	width: 100%
}

.category-img-container {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%
}

.category-overlay {
	background: linear-gradient(to top, rgba(39,55,42,0.9) 0%, rgba(39,55,42,0.5) 50%, rgba(39,55,42,0.3) 100%);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.category-text {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	opacity: 0.9
}

.category-title {
	display: inline-block;
        font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	position: relative
}

.category-title:after {
	background-color: #96c93d;
	bottom: -8px;
	content: '';
	height: 3px;
	left: 0;
	position: absolute;
	width: 40px
}

.contact-header {
	background-color: var(--primary-color);
	background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
	background-size: 90px 90px
}

.contact-header .providers-header-content {
	backdrop-filter: blur(4px);
	background-color: rgba(0,0,0,0.15);
	border: 1px solid rgba(255,255,255,0.2);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2)
}

.contact-header .providers-header-title {
	border-bottom: 2px solid rgba(255,255,255,0.8);
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3)
}

.contact-header::before {
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.9) 0%, rgba(var(--secondary-rgb), 0.8) 50%, rgba(var(--primary-rgb), 0.75) 100%);
	box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.cta-section {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	margin-top: 40px;
	padding: 40px
}

.dropdown-divider {
	border-top: 1px solid rgba(255,255,255,0.1)
}

.dropdown-item {
	color: white !important
}

.dropdown-item:focus, .dropdown-item:hover {
	background-color: rgba(243,199,0,0.1);
	color: #f3c700 !important
}

.dropdown-menu {
	background-color: #1e293b;
	border: 1px solid rgba(255,255,255,0.1)
}

.dropdown-toggle {
	color: white !important
}

.fade-in {
	animation: fadeIn 1s ease-in
}

.feature-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	height: 100%;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease
}

.feature-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px
}

.feature-card p {
	color: #6c757d;
	font-size: 0.9rem
}

.feature-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	transform: translateY(-5px)
}

.feature-icon {
	color: var(--secondary-color);
	font-size: 2.5rem;
	margin-bottom: 15px
}

.feature-item {
	align-items: center;
	background-color: #f8f9fa;
	border-radius: 6px;
	color: #555;
	display: flex;
	font-size: 0.9rem;
	padding: 10px
}

.feature-item i {
	color: var(--secondary-color)
}

.form-check-input:checked {
	background-color: #03652e;
	border-color: #03652e
}

.form-control:focus {
	border-color: #03652e;
	box-shadow: none
}

.hero-section {
	padding: 4rem 0
}

.hero-section h1 {
	line-height: 1.2
}

.hover-scale {
	transition: transform 0.3s ease-in-out
}

.hover-scale:hover {
	transform: scale(1.03)
}

.image-container-medium {
	border-radius: var(--border-radius);
	max-height: 550px;
	overflow: hidden
}

.image-container-medium img {
	height: 100%;
	object-fit: cover;
	width: 100%
}

.logo-background {
	align-items: center;
	background-color: var(--primary-color);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: flex;
	height: 100px;
	justify-content: center;
	max-width: 220px;
	padding: 15px;
	width: 100%
}

.nav-link {
	color: white !important;
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: var(--transition)
}

.nav-link:hover {
	color: var(--accent-color) !important
}

.navbar {
	backface-visibility: hidden;
	background-color: #21252a;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.1);
	padding: 0.75rem 1rem;
	transform: translateZ(0)
}

.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700
}

.navbar-brand img {
	backface-visibility: hidden;
	transform: translateZ(0)
}

.navbar-container {
	height: 107px;
	position: relative;
	width: 100%
}

.navbar-scrolled {
	box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
	padding: 0.5rem 0
}

.navbar-toggler {
	border-color: rgba(255,255,255,0.3) !important
}

.navbar-toggler-icon {
	filter: brightness(10)
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(var(--secondary-rgb), 0.3);
    color: white;
    font-weight: 500;
}

.pagination .page-link {
    background-color: white;
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin: 0 3px;
    padding: 0.5rem 0.9rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: rgba(var(--secondary-rgb), 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    opacity: 0.6;
    pointer-events: none;
}

/* Estilos consolidados para tarjetas de productos */
.product-card {
    border: 1px solid rgba(var(--secondary-rgb), 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--secondary-rgb), 0.15);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    background: linear-gradient(to bottom, rgba(var(--light-green), 0.1) 0%, rgba(255,255,255,1) 15%);
    border-top: 3px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.product-card .card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card .card-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Estilos para el footer de las tarjetas de productos */
.product-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

.category-badge {
    margin: 0;
}

.category-badge .badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
    word-break: break-word;
    display: inline-block;
}

.details-button {
    text-align: right;
}

.details-button .btn {
    min-width: 115px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 0.85rem;
}

.details-button .btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--secondary-rgb), 0.25);
}

.product-detail-image {
	max-height: 400px;
	object-fit: contain
}

.product-gallery img {
	border-radius: var(--border-radius);
	height: 400px;
	object-fit: cover
}

.product-thumbnail {
	cursor: pointer;
	height: 80px;
	object-fit: cover;
	opacity: 0.7;
	transition: var(--transition)
}

.product-thumbnail.active, .product-thumbnail:hover {
	opacity: 1
}

.project-gallery .gallery-item {
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
	transition: all 0.3s ease
}

.project-gallery .gallery-item:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	transform: translateY(-5px)
}

.project-gallery .gallery-item:hover img {
	transform: scale(1.05)
}

.project-gallery img {
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s ease;
	width: 100%
}

.project-logo {
	max-height: 70px;
	max-width: 100%;
	object-fit: contain
}

.project-logo-container {
	align-items: center;
	display: flex;
	justify-content: center
}

.project-showcase-badges .badge {
	font-weight: 500;
	margin-right: 5px
}

.project-showcase-content {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px
}

.project-showcase-cta {
	margin-top: 20px
}

.project-showcase-description {
	color: #555;
	line-height: 1.6
}

.project-showcase-features {
	margin-top: auto
}

.project-showcase-image {
    border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
	position: relative
}

.project-showcase-image img {
	height: 450px;
	object-fit: cover;
	transition: transform 0.5s ease;
	width: 100%
}

.project-showcase-image:hover img {
	transform: scale(1.02)
}

.project-showcase-provider {
	border-bottom: 1px solid #eee;
	padding: 10px 0
}

.project-showcase-title {
	color: #333;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 15px
}

.projects-header {
	background-color: var(--secondary-color);
	background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
	background-size: 100px 100px
}

.projects-header .providers-header-title {
	border-bottom: 2px solid var(--primary-color)
}

.projects-header::before {
	background: linear-gradient(to right, rgba(var(--secondary-rgb), 0.85), rgba(var(--primary-rgb), 0.85));
	content: "";
	height: 100%;
    left: 0;
	position: absolute;
	top: 0;
    width: 100%;
	z-index: 1
}

.provider-content {
	padding: 1.5rem;
	position: relative
}

.provider-cta {
	margin-top: 2rem
}

.provider-cta .btn-outline-primary {
	font-weight: 600;
	padding: 0.8rem 1.8rem
}

.provider-cta .btn-primary {
    font-weight: 600;
	padding: 0.8rem 1.8rem
}

.provider-features {
	list-style: none;
	padding-left: 0.5rem
}

.provider-features .fas {
	color: #2a7d45;
	font-size: 1.2rem
}

.provider-features li {
	font-size: 1.1rem;
	padding-left: 0.5rem;
	position: relative
}

.provider-icon {
	align-items: center;
	background-color: #f0f4f8;
	border-radius: 50%;
	color: var(--secondary-color);
	display: flex;
	font-size: 1.2rem;
	height: 40px;
	justify-content: center;
	margin-right: 15px;
	width: 40px
}

.provider-img {
	height: 100%;
	object-fit: contain;
	padding: 20px;
	transition: transform 0.6s ease;
	width: 100%
}

.provider-img-container {
	aspect-ratio: 4/3;
	background-color: rgba(42,125,69,0.02);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: auto;
	margin: 0 auto;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
	width: 100%
}

.provider-img-container:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	transform: translateY(-5px)
}

.provider-img-container:hover .provider-img {
	transform: scale(1.05)
}

.provider-img-container:hover .provider-overlay {
	opacity: 0.6
}

.provider-info {
	display: flex;
	flex-direction: column
}

.provider-label {
	color: #6c757d;
	font-size: 0.8rem
}

.provider-logo {
	max-height: 80px;
        max-width: 100%;
	object-fit: contain
}

.provider-name {
	color: #333;
	font-weight: 600
}

.provider-overlay {
	background: linear-gradient(to top, rgba(38,70,83,0.3), rgba(42,125,69,0.1));
	height: 100%;
	left: 0;
	opacity: 0.4;
    position: absolute;
    top: 0;
	transition: opacity 0.4s ease;
	width: 100%
}

.provider-title {
    color: #673a21;
    display: inline-block;
	font-size: 2rem;
	font-weight: 700;
	position: relative
}

.provider-title:after {
	background-color: #96c93d;
    bottom: -10px;
	content: '';
    height: 3px;
	left: 0;
	position: absolute;
	width: 50px
}

.providers-header {
	align-items: center;
	background-color: var(--primary-color);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
	background-size: 80px 80px;
	border-radius: 0.5rem;
	box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
	display: flex;
	height: 300px;
	justify-content: center;
	overflow: hidden;
	position: relative
}

.providers-header-content {
	backdrop-filter: blur(3px);
	background-color: rgba(0,0,0,0.2);
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.1);
	color: white;
	max-width: 80%;
	padding: 2rem;
    position: relative;
	text-align: center;
	z-index: 2
}

.providers-header-text {
	font-size: 1.25rem;
	letter-spacing: 0.5px;
	opacity: 0.95
}

.providers-header-title {
	border-bottom: 2px solid var(--accent-color);
	display: inline-block;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3)
}

.providers-header::before {
	background: linear-gradient(to right, rgba(var(--primary-rgb), 0.85), rgba(var(--secondary-rgb), 0.85));
    content: "";
	height: 100%;
	left: 0;
    position: absolute;
    top: 0;
    width: 100%;
	z-index: 1
}

.providers-section {
	background-color: #f9fbf7;
	overflow: hidden;
	padding: 5rem 0;
	position: relative
}

.providers-section:before {
	background: linear-gradient(90deg,#673a21 0%,#2a7d45 50%,#96c93d 100%);
	content: '';
	height: 10px;
	left: 0;
    position: absolute;
    top: 0;
	width: 100%
}

.rounded-circle {
	overflow: hidden;
	position: relative
}

.rounded-circle img {
	height: 100%;
	left: 50%;
    object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%
}

.search-header {
	background-color: var(--secondary-color);
	background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
	background-size: 95px 95px
}

.search-header .providers-header-content {
	backdrop-filter: blur(3px);
	background-color: rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	box-shadow: 0 5px 20px rgba(0,0,0,0.15)
}

.search-header .providers-header-title {
	border-bottom: 2px solid rgba(255,255,255,0.7);
	text-shadow: 1px 1px 3px rgba(0,0,0,0.4)
}

.search-header::before {
	background: linear-gradient(to bottom right, rgba(var(--secondary-rgb), 0.85) 0%, rgba(var(--accent-rgb), 0.75) 60%, rgba(var(--light-green), 0.4) 100%);
	box-shadow: inset 0 0 25px rgba(0,0,0,0.15);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.section-divider {
	background: var(--primary-color);
	background: var(--secondary-color);
	height: 3px;
	margin-top: 0.5rem;
	position: relative;
	width: 80px
}

.section-divider:before {
	background: var(--accent-color);
	content: '';
	height: 3px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 30px
}

.section-header {
	margin-bottom: 3rem;
	position: relative
}

.section-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin: 0 auto;
	max-width: 600px
}

.section-title {
	color: var(--primary-color);
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative
}

.shadow-sm {
	box-shadow: 0 .125rem .5rem rgba(var(--primary-rgb), 0.1) !important
}

.single-project-showcase {
	background-color: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.05);
	padding: 30px
}

.slider-section {
	background-color: #fcfcf9;
	overflow: hidden;
	padding: 40px 0;
	position: relative
}

.slider-section:before {
	background: rgba(var(--accent-rgb), 0.1);
	border-radius: 50%;
	content: '';
	height: 200px;
	left: -100px;
    position: absolute;
	top: -100px;
	width: 200px;
	z-index: 0
}

.splide-content {
	background: linear-gradient(45deg, rgba(var(--light-green), 0.05) 0%, rgba(255,255,255,1) 100%);
	border-radius: 8px;
	color: var(--dark-color);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	transform: translateY(0);
	transition: all 0.5s ease
}

.splide-content .btn {
	align-self: flex-start;
	animation-delay: 0.4s;
	animation: fadeInUp 0.6s ease forwards;
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	border-radius: 3px;
	box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.2);
	font-size: 0.95rem;
	opacity: 0;
	padding: 10px 24px;
	transform: translateY(20px);
	transition: all 0.3s ease
}

.splide-content .btn:hover {
	background-color: var(--dark-green);
	border-color: var(--dark-green);
	box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.25);
	transform: translateY(-3px)
}

.splide-slide-container {
	background-color: rgba(var(--dark-green), 0.6);
	border-radius: 8px;
	border: 3px solid rgba(var(--accent-rgb), 0.15);
	box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.12);
	height: 480px;
    overflow: hidden;
	position: relative;
	transition: transform 0.5s ease-in-out
}

.splide-slide-container img {
    height: 100%;
	object-fit: cover;
	opacity: 0.95;
	transform: translateZ(0);
	transition: all 0.8s ease-in-out;
	width: 100%;
	will-change: transform, opacity
}

.splide-text {
	animation-delay: 0.3s;
	animation: fadeInUp 0.6s ease forwards;
	color: var(--text-color);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(20px)
}

.splide-title {
	animation-delay: 0.2s;
	animation: fadeInUp 0.6s ease forwards;
	border-bottom: 2px solid rgba(var(--accent-rgb), 0.3);
	color: var(--primary-color);
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
    font-weight: 700;
	letter-spacing: -0.5px;
    margin-bottom: 1rem;
	opacity: 0;
    padding-bottom: 0.5rem;
	transform: translateY(20px)
}

.splide:hover .splide__arrows {
	opacity: 1
}

.splide__arrow {
	background: rgba(255,255,255,0.8);
	background: rgba(var(--accent-rgb), 0.8);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	height: 36px;
	opacity: 0.8;
	transition: all 0.3s ease;
	width: 36px
}

.splide__arrow i {
	color: #fff;
	font-size: 12px
}

.splide__arrow:hover {
	background: var(--secondary-color);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	opacity: 1;
	transform: scale(1.1)
}

.splide__arrows {
	opacity: 0;
	transition: opacity 0.3s ease
}

.splide__pagination {
	bottom: 10px;
	z-index: 10
}

.splide__pagination__page {
	background: rgba(var(--accent-rgb), 0.3);
	border-radius: 1px;
	height: 3px;
	margin: 0 4px;
	opacity: 1;
	transform: scale(1);
	transition: all 0.3s ease;
	width: 30px
}

.splide__pagination__page.is-active {
	background: #03652e;
	background: #3498db
}

.splide__slide {
	-webkit-font-smoothing: subpixel-antialiased;
	backface-visibility: hidden;
	opacity: 0;
	padding: 15px;
	position: relative;
	transform: translateZ(0);
	transition: opacity 0.6s ease-in-out;
	will-change: opacity, transform
}

.splide__slide.is-active .splide-content {
	transform: translateX(0)
}

.splide__slide.is-active img {
	opacity: 1;
	transform: scale(1.03)
}

.splide__slide.is-active, .splide__slide.is-visible {
	opacity: 1
}

.splide__slide.is-next, .splide__slide.is-prev {
	opacity: 0.3;
	transition: opacity 0.4s ease-in-out
}

.splide__slide:not(.is-active) {
	opacity: 0;
	transform: translateZ(0);
	transition: opacity 0.6s ease-in-out
}

.team-card .member-image {
	border-radius: 50%;
	border: 3px solid #f0f0f0;
	height: 120px;
	margin: 0 auto 1rem;
    object-fit: cover;
	width: 120px
}

.text-primary {
	color: var(--secondary-color) !important
}

.text-secondary {
	color: var(--accent-color) !important
}

.thumbnail-image {
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s ease
}

.thumbnail-image.active, .thumbnail-image:hover {
	opacity: 1
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width: 576px) {
	.about-header {
		height: 200px
	}

	.contact-header {
		height: 200px
	}

	.projects-header {
		height: 200px
	}

	.provider-img-container {
		aspect-ratio: 1/1;
		max-width: 100%
	}

	.providers-header {
		height: 200px
	}

	.providers-header-content {
		padding: 1rem
	}

	.providers-header-text {
		font-size: 1rem
	}

	.providers-header-title {
		font-size: 1.8rem
	}

	.search-header {
		height: 200px
	}

	.slider-section {
		padding: 20px 0
	}

	.splide-content .btn {
		font-size: 0.85rem;
		padding: 6px 15px
	}

	.splide-slide-container {
		height: 220px
	}

	.splide-text {
		font-size: 0.9rem;
		margin-bottom: 0.8rem
	}

	.splide-title {
		font-size: 1.4rem;
		margin-bottom: 0.5rem
	}
    
    /* Estilos de paginación para móviles */
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination .page-item {
        margin-bottom: 0.5rem;
    }
    
    .pagination .page-link {
        font-size: 0.85rem;
        margin: 0 2px;
        padding: 0.4rem 0.7rem;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

@media (max-width: 767.98px) {
	.categoria-card {
		min-height: 150px
	}
}

@media (max-width: 768px) {
	.about-header {
		height: 250px
	}

	.category-card {
		height: 300px;
		margin-bottom: 20px
	}

	.category-text {
		font-size: 0.9rem;
		margin-bottom: 1rem
	}

	.category-title {
		font-size: 1.5rem
	}

	.contact-header {
		height: 250px
    }
    
    .feature-card {
		margin-bottom: 20px
	}

	.hero-section {
		padding: 2rem 0
	}

	.product-card .card-img-top {
		height: 180px
	}

	.product-gallery img {
		height: 300px
	}

	.project-gallery img {
		height: 180px
	}

    .projects-header {
		height: 250px
	}

	.provider-img-container {
		aspect-ratio: 3/2;
		max-width: 100%
	}

	.providers-header {
		height: 250px
	}

	.providers-header-content {
		padding: 1.5rem
	}

	.providers-header-text {
		font-size: 1.1rem
	}

	.providers-header-title {
		font-size: 2.2rem
	}

	.search-header {
		height: 250px
	}

	.splide-content {
		padding: 15px
	}

	.splide-content .btn {
		font-size: 0.9rem;
		padding: 8px 18px
	}

	.splide-slide-container {
		height: 280px;
		margin-bottom: 15px
	}

	.splide-text {
		font-size: 0.95rem;
		margin-bottom: 1rem
	}

	.splide-title {
		font-size: 1.6rem;
		margin-bottom: 0.6rem
	}

	.splide__pagination {
		bottom: 5px
	}

	.splide__slide {
		padding: 10px
	}
}

@media (max-width: 991px) {
	.project-showcase-content {
		margin-top: 20px
	}

	.project-showcase-image img {
		height: 350px
	}

	.product-card .card-body {
		padding: 1.25rem;
	}
	
	.product-card .card-title {
		font-size: 1.1rem;
	}
	
	.product-card-footer {
		gap: 10px;
	}
}

@media (max-width: 992px) {
	.provider-content {
		margin-bottom: 2rem;
		padding: 1rem 0
	}

	.provider-title {
		font-size: 1.8rem
	}

	.splide-content {
		padding: 20px
	}

	.splide-slide-container {
		height: 350px
	}

	.splide-text {
		font-size: 1rem;
		margin-bottom: 1.2rem
	}

	.splide-title {
		font-size: 1.8rem;
		margin-bottom: 0.8rem
	}
}

.search-btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.375rem 0.75rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--primary-rgb), 0.15);
}

.search-btn i {
    font-size: 0.9rem;
}

/* Estilos adicionales para la navegación de paginación */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.pagination .page-item {
    margin: 0 2px;
}

/* Animación sutil al cambiar de página */
.pagination .page-item.active .page-link {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Media queries para las tarjetas de productos */
@media (max-width: 767px) {
    .product-card-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .category-badge {
        flex: 1;
        min-width: 120px;
    }
    
    .details-button {
        flex: 0 0 auto;
    }
}

/* Estilo mejorado para etiqueta de categoría */
.categoria-container {
    max-width: 90%;
    z-index: 5;
}

.categoria-tag {
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.5rem 0.7rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    position: relative;
    z-index: 5;
    line-height: 1.3;
}

.categoria-tag:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(var(--accent-rgb), 0.1), rgba(255,255,255,0.5));
    z-index: -1;
    border-radius: 0 4px 4px 0;
}

.categoria-tag:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* Ajustes para las tarjetas de productos */
.product-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

/* Media queries para dispositivos móviles */
@media (max-width: 767px) {
    .categoria-container {
        max-width: 85%;
    }
    
    .categoria-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .details-button .btn {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .product-card .card-title {
        font-size: 1.1rem;
    }
}

/* Estilos personalizados para tarjetas de proveedores */
.provider-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.provider-card .card-body {
    padding-bottom: 0.75rem;
}

.provider-card .card-footer {
    padding-top: 0.5rem;
}

.provider-logo {
    max-height: 200px;
    width: auto;
    margin: 1rem auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.provider-logo-placeholder {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--accent-rgb), 0.05);
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.provider-card:hover .provider-logo-placeholder {
    transform: scale(1.05);
    background-color: rgba(var(--accent-rgb), 0.1);
}

/* Eliminar los estilos del nombre en hover */
.provider-name {
    display: none; /* Ocultar completamente el nombre */
}

/* Estilo para el botón de ver productos */
.provider-products-btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.provider-products-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--primary-rgb), 0.15);
}

/* Estilos para tooltips personalizados */
.tooltip {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
}

.tooltip .tooltip-inner {
    background-color: var(--primary-color);
    padding: 6px 12px;
    max-width: 250px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
} 