.bg-primary-opacity {
    background-color: var(--primary-color-opacity);
}

.bg-primary-opacity-thin {
    background-color: var(--primary-color-opacity-thin);
}

footer {
    font-family: "Noto Sans", sans-serif;
}

footer h5 {
    color: var(--footer-titles) !important;
    font-size: 18px;
}

footer ul li {
    margin: 10px 0;
}

footer a {
    font-size: 16px;
    color: white !important;
    text-decoration: none;
}

footer a:hover {
    font-weight: 700;
}

.techniques-section ul li::marker,
.benefits-section ul li::marker {
    color: var(--primary-color);
    font-size: 20px !important;
}

.note-section .card {
    background-color: var(--primary-color-opacity-thin);
    border: 1px solid var(--primary-color) !important;
    border-radius: 24px;
    box-shadow: 0 60px 100px 0 #412C644D;
}

.estudios-container {
    position: relative;
    width: 100%;
}

.estudios-image {
    position: absolute;
    right: 0;
    top: 30%;
}

.estudios-image img {
    max-width: 200px;
}

.expert-card {
    background-color: var(--primary-color-opacity);
    backdrop-filter: blur(120px);
    box-shadow: 0 15px 11px 0 rgba(242, 242, 242, 1);
}

.expert-card img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

.expert-card h5 {
    font-size: 26px;
    text-align: start;
    color: #0000003B;
}

.expert-card p {
    font-size: 14px;
    text-align: start;
}

.expert-card .col-8 {
    padding: 30px;
}

.card-custom {
    border-radius: 14px;
    background-color: #FBF4F8;
    border: none;
    height: 100%;
}

.card-custom a {
    box-shadow: 4px 4px 28px 0 #00000026;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 0 30px;
    background-color: white;
}

.card-custom img {
    border-radius: 14px;
}

.faq-section .accordion,
.faq-section .accordion-header,
.faq-section .accordion-body,
.faq-section .accordion-button {
    background-color: var(--primary-color-opacity-thin);
    border: none !important;
}

ol li::marker {
    color: #000 !important;
}





.image-container {
    position: relative;
    /* display: inline-block; */
    /* overflow: hidden; */
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
}

/* Fecha en el centro */
.image-date {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    font-weight: 600;
    text-align: center;
}

.image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    background-color: rgba(0, 0, 0, 0);
    /* Invisible por defecto */
    transition: background-color 0.3s ease;
}

.image-container:hover::after {
    background-color: rgba(0, 0, 0, 0.6);
    /* Oscurece al hacer hover */
}

.image-container:hover .image-date {
    opacity: 1;
}


.timeline-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #F4D5E3 0%, #C92B74 100%);
    border-radius: 5px;
}