.wellness-hub-services {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Lato', sans-serif;
    color: #181818;
}

/* Header Sections */
.wellness-hub-header,
.wellness-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    /* Aumentado para más aire */
}

/* Centrado del encabezado */
.wellness-hub-centered {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 50px;
}

.wellness-hub-centered .wellness-hub-title-group {
    width: 100%;
}

/* Barra de Valores */
.wellness-values-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(127, 29, 78, 0.1);
    border-bottom: 1px solid rgba(127, 29, 78, 0.1);
    max-width: 900px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-icon {
    color: #7F1D4E;
    font-size: 14px;
}

.value-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7A7A7A;
}

.value-divider {
    width: 1px;
    height: 15px;
    background: rgba(127, 29, 78, 0.2);
}

@media (max-width: 768px) {
    .wellness-values-bar {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .value-divider {
        display: none;
    }
}

@media (max-width: 500px) {
    .wellness-services-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 32px;
        flex-direction: column;
        gap: 15px;
    }
}

.wellness-hub-title {
    font-size: 32px;
    font-weight: 700;
    color: #181818;
    margin: 0;
}

.wellness-hub-subtitle {
    font-size: 18px;
    color: #bc6a84;
    margin: 5px 0 0;
    font-weight: 500;
}

.services-dynamic-title {
    font-size: 28px;
    font-weight: 600;
    color: #181818;
    margin: 40px 0 20px;
}

.services-dynamic-title span {
    font-style: italic;
    color: #7F1D4E;
}

/* Nav Arrows */
.category-nav-arrows,
.cards-nav-arrows {
    display: flex;
    gap: 12px;
}

.category-nav-arrows button,
.cards-nav-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.category-nav-arrows button:hover,
.cards-nav-arrows button:hover {
    background: rgba(127, 29, 78, 0.08);
    /* Fondo vino muy suave */
    border-color: #7F1D4E;
}

.category-nav-arrows button:hover svg path,
.cards-nav-arrows button:hover svg path {
    stroke: #7F1D4E;
}

.category-nav-arrows button svg,
.cards-nav-arrows button svg {
    width: 30px !important;
    height: 30px !important;
    transform: scale(1.6);
    /* Escalado para que el dibujo se vea más grande */
    transition: transform 0.3s ease;
}

/* Category Pills */
.wellness-hub-categories-wrap {
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.wellness-hub-categories-wrap::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.wellness-hub-categories {
    display: flex;
    gap: 12px;
}

.category-pill {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: rgba(127, 29, 78, 0.05);
    /* Rosado/Vino muy pálido */
    color: #7F1D4E;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-pill:hover {
    background: rgba(127, 29, 78, 0.12);
    color: #7F1D4E;
}

.category-pill.is-active {
    background: #7F1D4E;
    color: white;
    box-shadow: 0 4px 12px rgba(127, 29, 78, 0.2);
}

/* Cards Slider */
.wellness-cards-slider-container {
    position: relative;
}

.wellness-card-item {
    padding: 10px;
}

.wellness-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.wellness-hub-services .wellness-card-image {
    width: 100%;
    aspect-ratio: 4 / 3 !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.wellness-hub-services .wellness-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.wellness-card:hover .wellness-card-image img {
    transform: scale(1.05);
}

.wellness-hub-services .wellness-card-info {
    padding: 24px 10px 20px;
    /* Aumentado a 24px para separar bien de la imagen */
    display: flex;
    flex-direction: column;
}

.wellness-card-title {
    font-size: 22px;
    /* Ligeramente más grande y elegante */
    font-weight: 700;
    margin: 0 0 12px;
    color: #181818;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.wellness-hub-services .wellness-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    gap: 12px;
    margin-bottom: 16px;
    /* Espacio antes de la descripción */
}

.card-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bc6a84;
    background: rgba(188, 106, 132, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    /* Toque editorial */
}

.card-time {
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

.wellness-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    /* Mayor legibilidad */
    color: #7A7A7A;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wellness-card-link-more {
    font-size: 13px;
    font-weight: 700;
    color: #bc6a84;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.wellness-card-link-more:hover {
    color: #7F1D4E;
}

.wellness-card-link-more:hover svg path {
    stroke: #7F1D4E;
}

/* Slick adjustments */
.wellness-cards-slider-container .slick-list {
    margin: 0 -10px;
}

.wellness-cards-slider-container .slick-track {
    display: flex !important;
}

.wellness-cards-slider-container .slick-slide {
    height: inherit !important;
}