﻿.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.min-h-\[40vh\] {
    min-height: 40vh;
}

.lg\:container {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-6 {
    gap: 1.5rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb; /* código de color gris claro */
}

.rounded-lg {
    border-radius: 0.5rem;
}

.bg-gris {
    background-color: #f1f1f1; /* añade tu propio valor de color para gris */
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.w-auto {
    width: auto;
}

.md\:self-start {
    align-self: flex-start;
}



.text-\[14px\] {
    font-size: 14px;
}

.font-semibold {
    font-weight: 600;
}

.transition-all {
    transition: all 0.3s;
}

.duration-300 {
    transition-duration: 300ms;
}





/* Estilos para versión mobile */
@media (max-width: 768px) {
    .image-section {
        height: auto; /* Ajusta la altura en dispositivos móviles */
    }


}


.image-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    padding: 10px 0;
}



#bgImg{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: blur(8px);
}

#firstImg{
    position: relative;
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.accordion-container {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease-in-out;
}

.accordion-item:last-child {
    border-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.accordion-header:hover {
    background-color: #e5e7eb; /* Equivalent to Tailwind's hover:bg-gray-200 */
}

.accordion-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 500; /* font-medium */
}

.accordion-icon {
    transition: transform 0.3s ease-in-out;
}

.accordion-item[data-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-collapse {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.accordion-item[data-expanded="true"] .accordion-collapse {
    max-height: 500px; /* You can adjust this value */
    opacity: 1;
}

.accordion-content {
    padding: 1.25rem 1.5rem; /* pb-5 pl-6 */
    display: flex;
    flex-direction: column;
}

.accordion-link {
    color: #3b82f6; /* text-blue-600 */
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.accordion-link:hover {
    text-decoration: underline;
    color: #1e40af; /* hover:text-blue-800 */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: black; /* Texto negro por defecto */
}

.accordion-header:hover,
.accordion-item[data-expanded="true"] .accordion-header {
    background-color: #8daa0a; /* Color de hover */
}

.accordion-header:hover .accordion-title,
.accordion-item[data-expanded="true"] .accordion-title {
    color: white; /* Texto siempre negro en hover y estado activo */
}

.accordion-collapse {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.accordion-collapse[data-expanded="true"] {
    max-height: 1000px; /* Ajusta este valor según tus necesidades */
    opacity: 1;
}
.cop16{
	font-size: 55px;
    font-weight: bold;
}
