/* Proyectos Section Styles */
.proyectos-section {
    background-color: #F8F9FA;
    position: relative;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* Background Subtle Flower Graphic */
.proyectos-section::after {
    content: "";
    position: absolute;
    right: -15rem;
    bottom: -5rem;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

.project-card {
    border-radius: 1rem;
    overflow: hidden;
    background-color: #163923;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific curve for top left only, or all top? Image shows rounded corners everywhere */
.project-card .project-img-wrapper {
    border-radius: 1rem 1rem 0 0;
}

.project-info {
    padding: 1rem;
    color: white;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-badge {
    display: inline-block;
    border: 1px solid #E3E992;
    color: #E3E992;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.project-badge.en-preventa {
    background-color: #E3E992;
    color: #163923;
    border-color: #E3E992;
}

.speech-bubble {
    background-color: #E3E992;
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(227, 233, 146, 0.4);
    z-index: 10;
}

/* Chat tail pointing left */
.speech-bubble::before {
    content: "";
    position: absolute;
    top: 3rem;
    left: -1rem;
    width: 0;
    height: 0;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-right: 1.5rem solid #E3E992;
}

.speech-bubble-list li {
    padding: 0.5rem 0;
    font-weight: 700;
    color: #163923;
}

.speech-bubble-list li:not(:last-child) {
    border-bottom: 2px solid #163923;
}
