/* ==========================================
   EXPERTS SECTION - DESKTOP
   Con botón pill igual al slider
   ========================================== */

:root {
    --orange-bright: #FF5C00;
    --text-dark: #1a1a1a;
    --gray-text: #888;
}

/* Fondo blanco completo */
body {
    background-color: #fff;
}

.experts-section {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

/* ==========================================
   TITULAR CON BOTÓN PILL
   ========================================== */

.experts-headline {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-family: 'Domi', sans-serif;
}

.experts-accent {
    color: var(--orange-bright);
}

/* Botón Pill con isotipo (igual al slider) */
.experts-pill-button-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 60px;
    position: relative;
    vertical-align: middle;
    margin: 0 10px;
}

.experts-pill-button-bg {
    width: 85px;
    height: 38px;
    background: linear-gradient(180deg, #ff9e55 0%, #ff5c00 50%, #d44d00 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3);
    display: block;
}

.experts-pill-button-isotipo {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
    filter: brightness(0);
}

/* ==========================================
   GRID LAYOUT (solo desktop)
   ========================================== */

.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.experts-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ==========================================
   TARJETAS
   ========================================== */

.experts-card {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Efectos de color (Duotone simulado con overlays) */
.experts-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.experts-shadow-orange {
    background-color: #ff8c00;
}

.experts-shadow-red {
    background-color: #ff2e00;
}

/* ==========================================
   TARJETA PRINCIPAL (Centro)
   ========================================== */

.experts-card-main {
    aspect-ratio: 1 / 1.15;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experts-logo-mini {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h11v11H0zM13 0h11v11H13zM0 13h11v11H0zM13 13h11v11H13z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h11v11H0zM13 0h11v11H13zM0 13h11v11H0zM13 13h11v11H13z"/></svg>');
}

.experts-profile-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Domi', sans-serif;
}

.experts-profile-info p {
    font-size: 14px;
    opacity: 0.8;
    font-family: 'Domi', sans-serif;
}

/* ==========================================
   TEXTOS Y BOTONES (desktop)
   ========================================== */

.experts-description {
    color: var(--gray-text);
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
    padding: 0 10px;
    font-family: 'Domi', sans-serif;
}

.text-orange {
    color: var(--orange-bright);
    font-weight: 600;
}

.experts-btn-book {
    background-color: var(--orange-bright);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s;
    display: block;
    text-align: center;
    font-family: 'Domi', sans-serif;
}

.experts-btn-book:hover {
    transform: scale(1.02);
}

/* ==========================================
   BARRA DE PROGRESO (desktop)
   ========================================== */

.experts-progress-bar {
    width: 100%;
    height: 2px;
    background: #eee;
    margin-top: -10px;
}

.experts-progress-fill {
    width: 40%;
    height: 100%;
    background: var(--orange-bright);
}

/* ==========================================
   OCULTAR elementos mobile en desktop
   ========================================== */
@media (min-width: 769px) {
    .experts-subtitle-mobile,
    .experts-cta-wrapper,
    .experts-carousel-container,
    .experts-progress-container-mobile {
        display: none !important;
    }
}