.ac-servicios-card {
    box-sizing: border-box;
    margin-inline: auto;
    overflow: hidden;
    background-color: #ffd7be;
    background-repeat: no-repeat;
}
.ac-servicios-title {
    margin-top: 0;
    color: #8b7377;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.05;
}
.ac-servicios-grid {
    display: grid;
    align-items: start;
    width: 100%;
}
.ac-servicios-item-link {
    color: inherit;
    text-decoration: none;
}
.ac-servicios-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.ac-servicios-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #9b7d80;
    border-radius: 50%;
    box-sizing: border-box;
}
.ac-servicios-icon i,
.ac-servicios-icon svg {
    display: block;
}
.ac-servicios-icon img {
    display: block;
    object-fit: contain;
}
.ac-servicios-text {
    white-space: normal;
    overflow-wrap: anywhere;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}
.ac-servicios-button-wrap {
    margin-top: 24px;
    text-align: center;
}
.ac-servicios-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}
.ac-servicios-button:hover,
.ac-servicios-button:focus {
    opacity: .9;
    transform: translateY(-1px);
}
@media (max-width: 767px) {
    .ac-servicios-card {
        padding: 26px 22px 30px;
    }
    .ac-servicios-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
}
