
/* Scroll Down Button */
.scroll-down-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.scroll-down-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 8rem;
}

.scroll-down-button:hover {
    transform: translateY(3px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #000;
}

.scroll-down-button i {
    font-size: 20px;
}
.passport-container-title {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Indicadores y logros styles */
.objective-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 4px #0000001A;
}

.indicator-card {
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.indicator-card .indicator-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: opacity 0.3s ease;
}

.indicator-card .indicator-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0!important;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.indicator-card:hover .indicator-title {
    opacity: 0;
}

.indicator-card:hover .indicator-details {
    opacity: 1!important;
}

.indicator-value {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.indicator-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.indicator-description {
    font-size: 0.9rem;
    line-height: 1.2;
}

.indicator-hormonal {
    background-color: #FF9999;
}

.indicator-cardio {
    background-color: #FFA726;
}

.indicator-muscular {
    background-color: #7986CB;
}

.indicator-inflamacion {
    background-color: #BA68C8;
}

.indicator-metabolica {
    background-color: #66BB6A;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3.5rem;


}

.timeline-item .card {
    background-color: #E91E63;
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0px 4px 15px 0px #0000001A;
    margin: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #E91E63;
    border-radius: 50%;
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 3.3rem);
    background-color: #E91E63;
}

.timeline-item:last-child:after {
    display: none;
}

.heart-icon {
    color: #E91E63;
    margin-right: 0.5rem;
}



.passport-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0px 4px 15px 0px #0000001A;
}

.profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.result-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.result-item:last-child {
    border-bottom: none;
}

.check-icon {
    color: #4CAF50;
}

.bio-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
}

.bio-value {
    color: #E91E63;
    font-weight: 600;
}

.finding-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0px 4px 15px 0px #0000001A;
}

.finding-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.finding-label {
    color: #666;
    margin-bottom: 0.5rem;
}

.finding-value {
    color: #E91E63;
    font-size: 1.25rem;
    font-weight: bold;
}

.perspective-card {
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.perspective-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.perspective-orange {
    background-color: #FFE0B2;
}

.perspective-purple {
    background-color: #E1BEE7;
}

.perspective-pink {
    background-color: #FCE4EC;
}




.method-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.age-comparison {
    font-size: 1.2rem;
    color: #E91E63;
    margin-bottom: 2rem;
    font-weight: 500;
}

.potential-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #333;
}

.evolution-message {
    font-size: 1.5rem;
    color: #E91E63;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evolution-message .emoji {
    font-size: 2rem;
}

.line {
    height: 100%;
    width: 1px;
    background-color: #E91E63;
}

.passport-main-container {
    
    background-image: url("./../assets/img/background-passport.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80%; 
}
.achievement-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
