/* Main Section Wrapper */
.estudo-service-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Individual Card Structure */
.estudo-service-card-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Image & Overlay */
.service-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.service-title {
    position: absolute;
    z-index: 2;
    margin: 0;
}

/* Content Area */
.service-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-description {
    margin: 0;
}

/* Tags Layout */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA Layout */
.service-cta-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    align-self: flex-start;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-cta-btn svg {
    width: 14px;
    height: 10px;
    display: block;
}

.service-cta-wrap:hover .service-cta-btn {
    opacity: 0.85;
    transform: translateX(3px);
}

/* ==========================
   NEW: BOTTOM SECTION
   ========================== */
.estudo-bottom-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.estudo-bottom-heading {
    margin: 0;
}

.estudo-bottom-content {
    margin: 0;
}