/* ============================================
   HERO SECTION - SERVICIOS
   ============================================ */

.hero-servicios {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 0 80px; /* 150px arriba para compensar navbar */
    background: linear-gradient(135deg, 
        #0D0D0D 0%, 
        #1a1a1a 50%, 
        #0D0D0D 100%);
    overflow: hidden;
}

/* Overlay con textura y gradiente dorado */
.hero-servicios__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(163, 126, 73, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(151, 123, 73, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(163, 126, 73, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-servicios .container {
    position: relative;
    z-index: 2;
}

/* === CONTENT === */
.hero-servicios__content {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-servicios__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #FAFAF8;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, 
        #FAFAF8 0%, 
        #A37E49 50%, 
        #977B49 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-servicios__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #F5F5DC;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* === GRID DE CATEGORÍAS === */
.hero-servicios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* === CARDS === */
.hero-servicios__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(163, 126, 73, 0.2);
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Efecto brillo sutil en el fondo */
.hero-servicios__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(163, 126, 73, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.hero-servicios__card:hover::before {
    left: 100%;
}

/* Hover Effect */
.hero-servicios__card:hover {
    transform: translateY(-8px);
    border-color: #A37E49;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(163, 126, 73, 0.2),
        inset 0 0 60px rgba(163, 126, 73, 0.05);
}

/* Icon Container */
.hero-servicios__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, 
        rgba(163, 126, 73, 0.2) 0%, 
        rgba(151, 123, 73, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Efecto glow en el icono al hacer hover */
.hero-servicios__card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(163, 126, 73, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero-servicios__card:hover .hero-servicios__card-icon::after {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Animación más profesional - solo scale, SIN rotación */
.hero-servicios__card:hover .hero-servicios__card-icon {
    background: linear-gradient(135deg, 
        #A37E49 0%, 
        #977B49 100%);
    transform: scale(1.1);
}

.hero-servicios__card-icon svg {
    fill: #A37E49;
    transition: fill 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-servicios__card:hover .hero-servicios__card-icon svg {
    fill: #0D0D0D;
}

/* Card Title */
.hero-servicios__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FAFAF8;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hero-servicios__card:hover .hero-servicios__card-title {
    color: #A37E49;
}

/* Card Description */
.hero-servicios__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #D4C4A8;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hero-servicios__card:hover .hero-servicios__card-desc {
    color: #F5F5DC;
}

/* ============================================
   HERO SECTION - SERVICIOS
   ============================================ */

.hero-servicios {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, 
        #0D0D0D 0%, 
        #1a1a1a 50%, 
        #0D0D0D 100%);
    overflow: hidden;
}

.hero-servicios__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(163, 126, 73, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(151, 123, 73, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(163, 126, 73, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-servicios .container {
    position: relative;
    z-index: 2;
}

.hero-servicios__content {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-servicios__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #FAFAF8;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, 
        #FAFAF8 0%, 
        #A37E49 50%, 
        #977B49 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-servicios__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #F5F5DC;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-servicios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-servicios__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(163, 126, 73, 0.2);
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.hero-servicios__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(163, 126, 73, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.hero-servicios__card:hover::before {
    left: 100%;
}

.hero-servicios__card:hover {
    transform: translateY(-8px);
    border-color: #A37E49;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(163, 126, 73, 0.2),
        inset 0 0 60px rgba(163, 126, 73, 0.05);
}

.hero-servicios__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, 
        rgba(163, 126, 73, 0.2) 0%, 
        rgba(151, 123, 73, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-servicios__card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(163, 126, 73, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero-servicios__card:hover .hero-servicios__card-icon::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.hero-servicios__card:hover .hero-servicios__card-icon {
    background: linear-gradient(135deg, 
        #A37E49 0%, 
        #977B49 100%);
    transform: scale(1.1);
}

.hero-servicios__card-icon svg {
    fill: #A37E49;
    transition: fill 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-servicios__card:hover .hero-servicios__card-icon svg {
    fill: #0D0D0D;
}

.hero-servicios__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FAFAF8;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hero-servicios__card:hover .hero-servicios__card-title {
    color: #A37E49;
}

.hero-servicios__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #D4C4A8;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hero-servicios__card:hover .hero-servicios__card-desc {
    color: #F5F5DC;
}

/* ============================================
   SECCIÓN DE SERVICIOS - MODERNA
   ============================================ */

.servicios-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.servicios-section--dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #0D0D0D 50%, #0a0a0a 100%);
    position: relative;
}

.servicios-section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(163, 126, 73, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(151, 123, 73, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* ============================================
   INTRO LAYOUT - TEXTO + CARROUSEL
   ============================================ */

.servicios-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.servicios-intro__content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

/* === HEADER DE SECCIÓN === */
.servicios-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, 
        rgba(163, 126, 73, 0.15) 0%, 
        rgba(107, 84, 56, 0.15) 100%);
    border-radius: 50%;
    border: 2px solid rgba(163, 126, 73, 0.4);
    position: relative;
}

.servicios-section__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 126, 73, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

.servicios-section__icon svg {
    fill: #A37E49;
}

.servicios-section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #FAFAF8;
}

.servicios-section__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #D4C4A8;
}

/* === CARROUSEL === */
.servicios-intro__carousel {
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Borde aplicado DESPUÉS del overflow para evitar espacio */
    box-shadow: 
        0 0 0 2px rgba(163, 126, 73, 0.4), /* Borde simulado con box-shadow */
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(163, 126, 73, 0.15);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 550px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-media {
    width: 100%;
    height: 100%;
    position: relative;
    background: #0a0a0a;
    /* Eliminado el border de aquí */
}

.carousel-media img,
.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Elimina espacios extra */
}

.carousel-media img[loading="lazy"] {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Caption - SIN GRADIENT, solo background sólido */
.carousel-caption {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: transparent; /* Sin fondo para evitar sombra */
    pointer-events: none;
    display: flex;
    justify-content: flex-start;
}

.carousel-caption span {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    color: #0D0D0D;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(163, 126, 73, 0.4);
}

/* === BOTONES DE NAVEGACIÓN === */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 13, 0.7);
    border: 1px solid rgba(163, 126, 73, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    border-color: #A37E49;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    fill: #A37E49;
    transition: fill 0.3s ease;
}

.carousel-btn:hover svg {
    fill: #0D0D0D;
}

.carousel-btn--prev {
    left: 20px;
}

.carousel-btn--next {
    right: 20px;
}

/* === INDICADORES (DOTS) === */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(163, 126, 73, 0.3);
    border: 2px solid rgba(163, 126, 73, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(163, 126, 73, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    border-color: #A37E49;
    width: 30px;
    border-radius: 5px;
}

/* === GRID DE SERVICIOS === */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === CARD DE SERVICIO MODERNA === */
.servicio-card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
    border: 1px solid rgba(163, 126, 73, 0.2);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(163, 126, 73, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicio-card:hover::before {
    opacity: 1;
}

.servicio-card:hover {
    transform: translateY(-8px);
    border-color: #A37E49;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(163, 126, 73, 0.2),
        inset 0 0 60px rgba(163, 126, 73, 0.05);
}

.servicio-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.servicio-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: linear-gradient(135deg, 
        rgba(163, 126, 73, 0.2) 0%, 
        rgba(107, 84, 56, 0.2) 100%);
    border: 1px solid rgba(163, 126, 73, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.servicio-card__icon svg {
    fill: #A37E49;
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-card__icon {
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(163, 126, 73, 0.4);
}

.servicio-card:hover .servicio-card__icon svg {
    fill: #0D0D0D;
}

.servicio-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    color: #FAFAF8;
    margin: 0;
}

.servicio-card__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #D4C4A8;
}

.servicio-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.servicio-card__features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 0 10px 28px;
    position: relative;
    color: #C49A5A;
    transition: color 0.3s ease;
}

.servicio-card:hover .servicio-card__features li {
    color: #D4C4A8;
}

.servicio-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(163, 126, 73, 0.5);
}

/* === CTA BUTTON === */
.servicio-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, 
        rgba(163, 126, 73, 0.15) 0%, 
        rgba(107, 84, 56, 0.15) 100%);
    border: 1px solid #A37E49;
    border-radius: 10px;
    color: #A37E49;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.servicio-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A37E49 0%, #977B49 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.servicio-card__cta:hover {
    color: #0D0D0D;
    border-color: #A37E49;
    box-shadow: 0 8px 25px rgba(163, 126, 73, 0.4);
    transform: translateX(5px);
}

.servicio-card__cta:hover::before {
    left: 0;
}

.servicio-card__cta svg {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.servicio-card__cta:hover svg {
    transform: translateX(5px);
}

/* ============================================
   STICKY NAVIGATION - SERVICIOS
   ============================================ */

.servicios-nav {
    position: sticky;
    top: 80px; /* Altura del navbar principal */
    background: linear-gradient(135deg, 
        rgba(13, 13, 13, 0.98) 0%, 
        rgba(18, 18, 18, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(163, 126, 73, 0.2);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /* SIEMPRE VISIBLE - sin transiciones de aparecer/desaparecer */
}

.servicios-nav__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(163, 126, 73, 0.3) transparent;
}

.servicios-nav__wrapper::-webkit-scrollbar {
    height: 4px;
}

.servicios-nav__wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.servicios-nav__wrapper::-webkit-scrollbar-thumb {
    background: rgba(163, 126, 73, 0.3);
    border-radius: 2px;
}

.servicios-nav__wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(163, 126, 73, 0.5);
}

.servicios-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    color: #D4C4A8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.servicios-nav__item svg {
    fill: #A37E49;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover effect */
.servicios-nav__item:hover {
    color: #FAFAF8;
    background: rgba(163, 126, 73, 0.1);
}

.servicios-nav__item:hover svg {
    fill: #C49A5A;
    transform: scale(1.1);
}

/* Active state */
.servicios-nav__item.active {
    color: #FAFAF8;
    border-bottom-color: #A37E49;
    background: rgba(163, 126, 73, 0.15);
}

.servicios-nav__item.active svg {
    fill: #A37E49;
}

/* Efecto de brillo al activarse */
.servicios-nav__item.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #A37E49 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   LAYOUT INVERTIDO - EXTERIORES
   ============================================ */

.servicios-intro--reverse {
    grid-template-columns: 1.3fr 0.9fr; /* Invertido */
}

.servicios-intro--reverse .servicios-intro__carousel {
    order: 1; /* Carrousel a la izquierda */
}

.servicios-intro--reverse .servicios-intro__content {
    order: 2; /* Texto a la derecha */
    padding-left: 20px;
    padding-right: 0;
}

