/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ========================================
   SECCIÓN SALONES HOME - CARDS SIMPLES
   Añadir al style.css del child theme
   ======================================== */


/* Sección principal */
.ns-salones-home {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.ns-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ns-salon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block; /* Añadir esta línea */
}

/* Ocultar el icono cuando hay imagen */
.ns-salon-home-card__image:has(img) .ns-salon-home-card__icon {
    display: none;
}

/* Header de la sección */
.ns-salones-home-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ns-salones-home-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.75rem 0;
}

.ns-salones-home-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Grid de cards */
.ns-salones-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards individuales */
.ns-salon-home-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(156, 130, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ns-salon-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Card principal destacada */
.ns-salon-home-card--principal {
    border: 2px solid #9c8263;
    background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
}

.ns-salon-home-card--principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9c8263, #b8956f);
}

/* Imagen/header de la card */
.ns-salon-home-card__image {
    height: 140px;
    background: linear-gradient(135deg, #f5f3f0 0%, #eae6df 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ns-salon-home-card__image--coming {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.ns-salon-home-card__image--future {
    background: linear-gradient(135deg, #fef7e7 0%, #f6e89f 100%);
}

.ns-salon-home-card__icon {
    font-size: 3rem;
    opacity: 0.8;
}

.ns-salon-home-card__image--coming .ns-salon-home-card__icon {
    color: #64748b;
}

.ns-salon-home-card__image--future .ns-salon-home-card__icon {
    color: #d69e2e;
}

/* Badges */
.ns-salon-home-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #9c8263;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ns-badge--coming {
    background: #3b82f6;
}

.ns-badge--future {
    background: #f59e0b;
}

/* Contenido de la card */
.ns-salon-home-card__content {
    padding: 1.5rem;
}

.ns-salon-home-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
}

.ns-salon-home-card__tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #9c8263;
    margin: 0 0 1.25rem 0;
    font-style: italic;
}

/* Información */
.ns-salon-home-card__info {
    margin-bottom: 1.5rem;
}

.ns-salon-home-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.ns-salon-home-info-item:last-child {
    margin-bottom: 0;
}

.ns-salon-home-info-item span:first-child {
    font-size: 0.9rem;
    min-width: 18px;
}

.ns-salon-home-info-item strong {
    color: #9c8263;
}

/* Botones de acción */
.ns-salon-home-card__actions {
    display: flex;
    gap: 0.75rem;
}

.ns-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.ns-home-btn--primary {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border-color: #9c8263;
}

.ns-home-btn--primary:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(156, 130, 99, 0.3);
    color: white;
}

.ns-home-btn--secondary {
    background: transparent;
    color: #9c8263;
    border-color: #9c8263;
}

.ns-home-btn--secondary:hover {
    background: #9c8263;
    color: white;
}

.ns-home-btn--outline {
    background: transparent;
    color: #9c8263;
    border-color: rgba(156, 130, 99, 0.5);
}

.ns-home-btn--outline:hover {
    background: rgba(156, 130, 99, 0.1);
    border-color: #9c8263;
    color: #9c8263;
}

.ns-home-btn--ghost {
    background: transparent;
    color: #9c8263;
    border-color: rgba(156, 130, 99, 0.3);
}

.ns-home-btn--ghost:hover {
    background: rgba(156, 130, 99, 0.05);
    border-color: #9c8263;
}

/* CTA final */
.ns-salones-home-cta {
    text-align: center;
}

.ns-home-btn--large {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border: 2px solid #9c8263;
    min-width: 240px;
}

.ns-home-btn--large:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 130, 99, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ns-salones-home {
        padding: 3rem 0;
    }
    
    .ns-home-container {
        padding: 0 1rem;
    }
    
    .ns-salones-home-title {
        font-size: 2rem;
    }
    
    .ns-salones-home-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ns-salon-home-card__content {
        padding: 1.25rem;
    }
    
    .ns-salon-home-card__actions {
        flex-direction: column;
    }
    
    .ns-home-btn {
        flex: none;
        width: 100%;
    }
    
    .ns-home-btn--large {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .ns-salones-home-title {
        font-size: 1.75rem;
    }
    
    .ns-salon-home-card__name {
        font-size: 1.25rem;
    }
    
    .ns-salon-home-card__image {
        height: 120px;
    }
    
    .ns-salon-home-card__icon {
        font-size: 2.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ns-salon-home-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.ns-salon-home-card:nth-child(1) {
    animation-delay: 0.1s;
}

.ns-salon-home-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ns-salon-home-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Accesibilidad */
.ns-home-btn:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .ns-salon-home-card,
    .ns-home-btn {
        animation: none;
        transition: none;
    }
    
    .ns-salon-home-card:hover,
    .ns-home-btn:hover {
        transform: none;
    }
}


/* ========================================
   COLUMNA 3 - INFORMACIÓN RÁPIDA
   Añadir al style.css del child theme
   ======================================== */

/* Container principal */
.ns-info-rapida {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(156, 130, 99, 0.15);
    position: relative;
    overflow: hidden;
}

.ns-info-rapida::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9c8263, #b8956f);
}

/* Título */
.ns-info-rapida__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.ns-info-rapida__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #9c8263, #b8956f);
    border-radius: 2px;
}

/* Sección de contacto */
.ns-info-rapida__contact {
    margin-bottom: 1.5rem;
}

.ns-info-rapida__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(156, 130, 99, 0.04);
    border-radius: 12px;
    border-left: 3px solid #9c8263;
    transition: all 0.3s ease;
}

.ns-info-rapida__item:hover {
    background: rgba(156, 130, 99, 0.08);
    transform: translateX(2px);
}

.ns-info-rapida__item:last-child {
    margin-bottom: 0;
}

.ns-info-rapida__icon {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    margin-top: 2px;
    min-width: 20px;
}

.ns-info-rapida__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ns-info-rapida__content strong {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 2px;
}

.ns-info-rapida__content span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

.ns-info-rapida__phone {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9c8263;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ns-info-rapida__phone:hover {
    color: #8a6f56;
}

/* Destacados */
.ns-info-rapida__highlights {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(156, 130, 99, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(156, 130, 99, 0.15);
}

.ns-info-rapida__highlight {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.ns-info-rapida__highlight:last-child {
    margin-bottom: 0;
}

.ns-info-rapida__highlight-icon {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    min-width: 18px;
}

/* Botones de acción */
.ns-info-rapida__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ns-btn--full {
    width: 100%;
    justify-content: center;
}

/* Botón con animación de scroll suave */
.ns-smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive para columna 3 */
@media (max-width: 1200px) {
    .ns-info-rapida {
        padding: 1.5rem 1.25rem;
    }
    
    .ns-info-rapida__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ns-info-rapida {
        padding: 1.25rem 1rem;
        margin-bottom: 2rem;
    }
    
    .ns-info-rapida__item {
        padding: 0.5rem;
    }
    
    .ns-info-rapida__highlights {
        padding: 0.75rem;
    }
}

/* Estados de enfoque para accesibilidad */
.ns-info-rapida__phone:focus,
.ns-btn:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
}

/* Animación sutil para la carga */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ns-info-rapida {
    animation: fadeInUp 0.6s ease-out;
}

/* Efecto hover para todo el container */
.ns-info-rapida:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Estilos para el scroll suave (si no está ya en el tema) */
html {
    scroll-behavior: smooth;
}

/* Variante más compacta si necesitas ahorrar espacio */
.ns-info-rapida--compact {
    padding: 1.5rem 1.25rem;
}

.ns-info-rapida--compact .ns-info-rapida__item {
    padding: 0.5rem;
    margin-bottom: 0.75rem;
}

.ns-info-rapida--compact .ns-info-rapida__highlights {
    padding: 0.75rem;
}

.ns-info-rapida--compact .ns-info-rapida__highlight {
    margin-bottom: 0.375rem;
}

/* ========================================
   SECCIÓN SERVICIOS ÉPICA - COMPLETO
   Añadir al style.css del child theme
   ======================================== */

/* Sección principal */
.ns-servicios-epic {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 50%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.ns-servicios-epic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(156, 130, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 130, 99, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.ns-epic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header épico */
.ns-servicios-epic-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ns-servicios-epic-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    position: relative;
}

.ns-servicios-epic-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #9c8263, #b8956f, #9c8263);
    border-radius: 4px;
}

.ns-servicios-epic-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Filtros interactivos */
.ns-servicios-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ns-filter-btn {
    background: #ffffff;
    border: 2px solid rgba(156, 130, 99, 0.2);
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ns-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #9c8263, #b8956f);
    transition: all 0.4s ease;
    z-index: -1;
}

.ns-filter-btn:hover,
.ns-filter-btn--active {
    color: white;
    border-color: #9c8263;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 130, 99, 0.3);
}

.ns-filter-btn:hover::before,
.ns-filter-btn--active::before {
    left: 0;
}

/* Grid de servicios */
.ns-servicios-epic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cards de servicios */
.ns-servicio-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(156, 130, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.ns-servicio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    border-color: rgba(156, 130, 99, 0.2);
}

/* Imagen/header de servicio */
.ns-servicio-card__image {
    height: 180px;
    background: linear-gradient(135deg, #f5f3f0 0%, #eae6df 100%);
    position: relative;
    overflow: hidden;
}

.ns-servicio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.1) 0%, rgba(156, 130, 99, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ns-servicio-card:hover .ns-servicio-card__overlay {
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.2) 0%, rgba(156, 130, 99, 0.1) 100%);
}

.ns-servicio-card__icon {
    font-size: 4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.ns-servicio-card:hover .ns-servicio-card__icon {
    transform: scale(1.1);
    opacity: 1;
}

/* Badges */
.ns-servicio-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #9c8263;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ns-badge--premium {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.ns-badge--new {
    background: linear-gradient(135deg, #059669, #10b981);
}

/* Contenido */
.ns-servicio-card__content {
    padding: 2rem;
}

.ns-servicio-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.ns-servicio-card__description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

/* Features tags */
.ns-servicio-card__features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ns-feature-tag {
    background: rgba(156, 130, 99, 0.1);
    color: #9c8263;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(156, 130, 99, 0.2);
    transition: all 0.3s ease;
}

.ns-servicio-card:hover .ns-feature-tag {
    background: rgba(156, 130, 99, 0.15);
    color: #8a6f56;
}

/* Footer de la card */
.ns-servicio-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(156, 130, 99, 0.1);
}

.ns-servicio-card__price {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #9c8263;
}

.ns-servicio-btn {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ns-servicio-btn:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(156, 130, 99, 0.3);
    color: white;
}

/* CTA final épica */
.ns-servicios-epic-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.08) 0%, rgba(156, 130, 99, 0.04) 100%);
    border-radius: 32px;
    border: 2px solid rgba(156, 130, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.ns-servicios-epic-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at center, rgba(156, 130, 99, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ns-epic-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.ns-epic-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
}

.ns-epic-cta-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.ns-epic-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ns-epic-btn {
    padding: 1.125rem 2.25rem;
    border-radius: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.ns-epic-btn--primary {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border: 2px solid #9c8263;
}

.ns-epic-btn--primary:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(156, 130, 99, 0.4);
    color: white;
}

.ns-epic-btn--secondary {
    background: transparent;
    color: #9c8263;
    border: 2px solid #9c8263;
}

.ns-epic-btn--secondary:hover {
    background: #9c8263;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(156, 130, 99, 0.3);
}

/* Animaciones de filtros */
.ns-servicio-card {
    transition: all 0.4s ease, opacity 0.6s ease, transform 0.6s ease;
}

.ns-servicio-card.ns-hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ns-servicios-epic-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ns-servicios-epic {
        padding: 3rem 0;
    }
    
    .ns-epic-container {
        padding: 0 1rem;
    }
    
    .ns-servicios-epic-title {
        font-size: 2.5rem;
    }
    
    .ns-servicios-filters {
        gap: 0.75rem;
    }
    
    .ns-filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .ns-servicios-epic-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .ns-servicio-card__content {
        padding: 1.5rem;
    }
    
    .ns-servicio-card__image {
        height: 150px;
    }
    
    .ns-servicio-card__icon {
        font-size: 3rem;
    }
    
    .ns-servicios-epic-cta {
        padding: 3rem 1.5rem;
    }
    
    .ns-epic-cta-title {
        font-size: 1.875rem;
    }
    
    .ns-epic-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ns-epic-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .ns-servicios-epic-title {
        font-size: 2rem;
    }
    
    .ns-servicios-epic-subtitle {
        font-size: 1rem;
    }
    
    .ns-servicio-card__title {
        font-size: 1.25rem;
    }
    
    .ns-servicio-card__footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .ns-servicio-btn {
        width: 100%;
        text-align: center;
    }
    
    .ns-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ns-servicio-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.ns-servicio-card:nth-child(1) { animation-delay: 0.1s; }
.ns-servicio-card:nth-child(2) { animation-delay: 0.2s; }
.ns-servicio-card:nth-child(3) { animation-delay: 0.3s; }
.ns-servicio-card:nth-child(4) { animation-delay: 0.4s; }
.ns-servicio-card:nth-child(5) { animation-delay: 0.5s; }
.ns-servicio-card:nth-child(6) { animation-delay: 0.6s; }
.ns-servicio-card:nth-child(7) { animation-delay: 0.7s; }
.ns-servicio-card:nth-child(8) { animation-delay: 0.8s; }
.ns-servicio-card:nth-child(9) { animation-delay: 0.9s; }
.ns-servicio-card:nth-child(10) { animation-delay: 1s; }

.ns-filter-btn {
    animation: fadeInScale 0.5s ease-out;
    animation-fill-mode: both;
}

.ns-filter-btn:nth-child(1) { animation-delay: 0.1s; }
.ns-filter-btn:nth-child(2) { animation-delay: 0.2s; }
.ns-filter-btn:nth-child(3) { animation-delay: 0.3s; }
.ns-filter-btn:nth-child(4) { animation-delay: 0.4s; }

/* Estados de enfoque para accesibilidad */
.ns-filter-btn:focus,
.ns-servicio-btn:focus,
.ns-epic-btn:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
}

/* Reducir movimiento para usuarios sensibles */
@media (prefers-reduced-motion: reduce) {
    .ns-servicio-card,
    .ns-filter-btn,
    .ns-servicio-btn,
    .ns-epic-btn {
        animation: none;
        transition: none;
    }
    
    .ns-servicio-card:hover {
        transform: none;
    }
    
    .ns-servicios-epic-cta::before {
        animation: none;
    }
}

/* Estados de carga */
.ns-servicios-epic-grid.loading .ns-servicio-card {
    opacity: 0.5;
    pointer-events: none;
}

/* Mejoras de performance */
.ns-servicio-card {
    will-change: transform;
}

.ns-servicio-card:hover {
    will-change: auto;
}

/* Estilos para impresión */
@media print {
    .ns-servicios-epic {
        background: white;
        box-shadow: none;
    }
    
    .ns-servicio-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .ns-servicios-filters,
    .ns-servicios-epic-cta {
        display: none;
    }
}

/* ========================================
   SECCIÓN SOBRE NACHO SÁEZ - HOME
   Añadir al style.css del child theme
   ======================================== */

/* Sección principal */
.ns-sobre-home {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 30%, #f5f3f0 70%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.ns-sobre-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(156, 130, 99, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(156, 130, 99, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.ns-sobre-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header elegante */
.ns-sobre-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ns-sobre-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    position: relative;
}

.ns-sobre-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9c8263, transparent);
    border-radius: 3px;
}

.ns-sobre-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Contenido principal */
.ns-sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* Columna historia */
.ns-sobre-story {
    max-width: 100%;
}

/* Quote principal */
.ns-sobre-quote {
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.08) 0%, rgba(156, 130, 99, 0.04) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #9c8263;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.ns-sobre-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(156, 130, 99, 0.2);
    font-weight: 600;
    line-height: 1;
}

.ns-sobre-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.ns-sobre-quote cite {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9c8263;
    font-style: normal;
}

/* Texto principal */
.ns-sobre-text {
    margin-bottom: 3rem;
}

.ns-sobre-text-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
}

.ns-sobre-text p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 1.25rem 0;
}

.ns-sobre-text p:last-child {
    margin-bottom: 0;
}

.ns-sobre-text strong {
    color: #9c8263;
    font-weight: 600;
}

.ns-sobre-text em {
    color: #2c2c2c;
    font-style: italic;
}

/* Valores */
.ns-sobre-valores {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(156, 130, 99, 0.1);
}

.ns-valores-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.ns-valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ns-valor-item {
    text-align: center;
    padding: 1rem;
}

.ns-valor-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.ns-valor-item h5 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.5rem 0;
}

.ns-valor-item p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Columna visual */
.ns-sobre-visual {
    position: sticky;
    top: 2rem;
}

/* Imagen principal */
.ns-sobre-image {
    position: relative;
    margin-bottom: 2.5rem;
}

.ns-sobre-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f0ede8 0%, #e8e2db 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-sobre-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.3) 0%, rgba(156, 130, 99, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-sobre-image-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.ns-sobre-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(156, 130, 99, 0.3);
}

/* Timeline */
.ns-sobre-timeline {
    margin-bottom: 2.5rem;
}

.ns-timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.ns-timeline {
    position: relative;
    padding-left: 2rem;
}

.ns-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #9c8263, #b8956f, #9c8263);
}

.ns-timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ns-timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: #9c8263;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(156, 130, 99, 0.3);
}

.ns-timeline-year {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #9c8263;
    min-width: 50px;
    margin-top: 0.1rem;
}

.ns-timeline-content h5 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
}

.ns-timeline-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Stats */
.ns-sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.08) 0%, rgba(156, 130, 99, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(156, 130, 99, 0.1);
}

.ns-stat-item {
    text-align: center;
    padding: 1rem;
}

.ns-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #9c8263;
    margin-bottom: 0.25rem;
}

.ns-stat-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* CTA elegante */
.ns-sobre-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.12) 0%, rgba(156, 130, 99, 0.06) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(156, 130, 99, 0.15);
    overflow: hidden;
}

.ns-sobre-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.ns-sobre-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.ns-sobre-cta-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.ns-sobre-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ns-sobre-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    border-radius: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.ns-sobre-btn--primary {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border: 2px solid #9c8263;
}

.ns-sobre-btn--primary:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(156, 130, 99, 0.4);
    color: white;
}

.ns-sobre-btn--secondary {
    background: transparent;
    color: #9c8263;
    border: 2px solid #9c8263;
}

.ns-sobre-btn--secondary:hover {
    background: #9c8263;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(156, 130, 99, 0.3);
}

.ns-btn-icon {
    font-size: 1.1rem;
}

/* Decoraciones */
.ns-sobre-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ns-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 130, 99, 0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.ns-decoration-circle--1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.ns-decoration-circle--2 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: -10px;
    animation-delay: 2s;
}

.ns-decoration-circle--3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: -30px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ns-sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ns-sobre-visual {
        position: static;
    }
    
    .ns-valores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .ns-sobre-home {
        padding: 4rem 0;
    }
    
    .ns-sobre-container {
        padding: 0 1rem;
    }
    
    .ns-sobre-header {
        margin-bottom: 3rem;
    }
    
    .ns-sobre-title {
        font-size: 2.5rem;
    }
    
    .ns-sobre-content {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .ns-sobre-quote {
        padding: 1.5rem;
    }
    
    .ns-sobre-quote blockquote {
        font-size: 1.1rem;
    }
    
    .ns-timeline {
        padding-left: 1.5rem;
    }
    
    .ns-timeline-item::before {
        left: -1.5rem;
    }
    
    .ns-sobre-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ns-sobre-cta {
        padding: 3rem 1.5rem;
    }
    
    .ns-sobre-cta-title {
        font-size: 1.875rem;
    }
    
    .ns-sobre-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ns-sobre-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .ns-sobre-title {
        font-size: 2rem;
    }
    
    .ns-sobre-subtitle {
        font-size: 1rem;
    }
    
    .ns-valores-grid {
        gap: 1rem;
    }
    
    .ns-sobre-image-placeholder {
        height: 250px;
    }
    
    .ns-timeline-year {
        min-width: 45px;
        font-size: 0.85rem;
    }
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ns-sobre-story {
    animation: fadeInUp 0.8s ease-out;
}

.ns-sobre-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Estados de enfoque */
.ns-sobre-btn:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
}

/* Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    .ns-sobre-btn,
    .ns-decoration-circle {
        animation: none;
        transition: none;
    }
    
    .ns-sobre-btn:hover {
        transform: none;
    }
}

/* ========================================
   FIX PARA IMÁGENES EN SALONES
   ======================================== */

/* Asegurar que la imagen se mantenga en el contenedor */
.ns-salon-home-card__image {
    overflow: hidden !important; /* IMPORTANTE: esto corta lo que se desborde */
}

/* Asegurar que el badge esté por encima de la imagen */
.ns-salon-home-card__badge {
    z-index: 10 !important; /* Por encima de la imagen */
}

/* Imagen de servicios */
.ns-servicio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Efecto zoom en hover */
.ns-servicio-card:hover .ns-servicio-image {
    transform: scale(1.05);
}

/* Overlay más sutil cuando hay imagen */
.ns-servicio-card__image:has(.ns-servicio-image) .ns-servicio-card__overlay {
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.6) 0%, rgba(156, 130, 99, 0.3) 100%);
}

/* Ocultar icono cuando hay imagen */
.ns-servicio-card__image:has(.ns-servicio-image) .ns-servicio-card__icon {
    display: none;
}

/* Badge más visible sobre imagen */
.ns-servicio-card__image:has(.ns-servicio-image) .ns-servicio-card__badge {
    background: rgba(156, 130, 99, 0.9);
    backdrop-filter: blur(5px);
}


/* ========================================
   FIX PARA IMAGEN SOBRE NACHO SÁEZ
   ======================================== */

/* Imagen principal de Sobre Nacho */
.ns-sobre-main-image {
    width: 100%;
border-radius:10px!important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.ns-sobre-image:hover .ns-sobre-main-image {
    transform: scale(1.02);
}

/* Ocultar placeholder cuando hay imagen real */
.ns-sobre-image:has(.ns-sobre-main-image) .ns-sobre-image-placeholder {
    display: none;
}

/* Badge más visible sobre imagen real */
.ns-sobre-image:has(.ns-sobre-main-image) .ns-sobre-image-badge {
    background: rgba(156, 130, 99, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* ========================================
   PÁGINA RESERVAS - /reserva
   Añadir al style.css del child theme
   ======================================== */

/* Página principal */
.ns-reservas-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f3f0 100%);
    min-height: 80vh;
}

.ns-reservas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero reservas */
.ns-reservas-hero {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ns-reservas-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    position: relative;
}

.ns-reservas-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #9c8263, #b8956f, #9c8263);
    border-radius: 4px;
}

.ns-reservas-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Grid principal */
.ns-reservas-content {
    margin-bottom: 4rem;
}

.ns-reservas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna información */
.ns-reservas-info {
    max-width: 100%;
}

.ns-reservas-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 2rem 0;
}

/* Razones */
.ns-reservas-reasons {
    margin-bottom: 3rem;
}

.ns-reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(156, 130, 99, 0.04);
    border-radius: 16px;
    border-left: 4px solid #9c8263;
    transition: all 0.3s ease;
}

.ns-reason-item:hover {
    background: rgba(156, 130, 99, 0.08);
    transform: translateX(4px);
}

.ns-reason-item:last-child {
    margin-bottom: 0;
}

.ns-reason-icon {
    font-size: 2rem;
    min-width: 40px;
    margin-top: 0.25rem;
}

.ns-reason-content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.5rem 0;
}

.ns-reason-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

/* Proceso */
.ns-reservas-process {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.08) 0%, rgba(156, 130, 99, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(156, 130, 99, 0.15);
}

.ns-process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.ns-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ns-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Nunito Sans', sans-serif;
}

.ns-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 32px;
}

.ns-step-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Columna contacto */
.ns-reservas-contact {
    position: sticky;
    top: 2rem;
}

.ns-contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(156, 130, 99, 0.1);
}

.ns-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.ns-contact-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Salones */
.ns-contact-salones {
    margin-bottom: 2rem;
}

.ns-contact-salon {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(156, 130, 99, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(156, 130, 99, 0.1);
    transition: all 0.3s ease;
}

.ns-contact-salon:hover {
    background: rgba(156, 130, 99, 0.06);
}

.ns-contact-salon:last-child {
    margin-bottom: 0;
}

.ns-contact-salon--coming {
    background: rgba(156, 130, 99, 0.02);
    border-style: dashed;
}

.ns-contact-salon-header {
    margin-bottom: 1rem;
}

.ns-contact-salon-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
}

.ns-salon-type {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    color: #9c8263;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ns-contact-salon-info {
    margin-bottom: 1.5rem;
}

.ns-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.ns-contact-item:last-child {
    margin-bottom: 0;
}

.ns-contact-icon {
    font-size: 0.9rem;
    min-width: 20px;
}

/* Botones de teléfono */
.ns-phone-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ns-phone-btn:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 130, 99, 0.3);
    color: white;
}

.ns-phone-btn--principal {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    border: 2px solid #9c8263;
}

.ns-phone-btn--disabled {
    background: #e5e5e5;
    color: #999;
    cursor: not-allowed;
}

.ns-phone-btn--disabled:hover {
    transform: none;
    box-shadow: none;
}

.ns-phone-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.ns-phone-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ns-phone-content strong {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.ns-phone-content span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* WhatsApp alternativo */
.ns-contact-alternative {
    padding: 1.5rem;
    background: rgba(37, 211, 102, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-align: center;
}

.ns-contact-alternative h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.5rem 0;
}

.ns-contact-alternative p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem 0;
}

.ns-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ns-whatsapp-btn:hover {
    background: #20b954;
    transform: translateY(-1px);
    color: white;
}

.ns-whatsapp-icon {
    font-size: 1.1rem;
}

/* Información extra */
.ns-reservas-extra {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(156, 130, 99, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(156, 130, 99, 0.1);
}

.ns-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.ns-extra-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ns-extra-item h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
}

.ns-extra-item p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

/* CTA Final */
.ns-reservas-final-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(156, 130, 99, 0.12) 0%, rgba(156, 130, 99, 0.06) 100%);
    border-radius: 24px;
    border: 2px solid rgba(156, 130, 99, 0.15);
}

.ns-reservas-final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
}

.ns-reservas-final-cta p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ns-final-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ns-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2rem;
    border-radius: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 240px;
}

.ns-cta-btn--primary {
    background: linear-gradient(135deg, #9c8263, #b8956f);
    color: white;
    border: 2px solid #9c8263;
}

.ns-cta-btn--primary:hover {
    background: linear-gradient(135deg, #8a6f56, #9c8263);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(156, 130, 99, 0.4);
    color: white;
}

.ns-cta-btn--secondary {
    background: transparent;
    color: #9c8263;
    border: 2px solid #9c8263;
}

.ns-cta-btn--secondary:hover {
    background: #9c8263;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(156, 130, 99, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ns-reservas-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ns-reservas-contact {
        position: static;
    }
}

@media (max-width: 768px) {
    .ns-reservas-page {
        padding: 3rem 0;
    }
    
    .ns-reservas-container {
        padding: 0 1rem;
    }
    
    .ns-reservas-title {
        font-size: 2.5rem;
    }
    
    .ns-reservas-hero {
        margin-bottom: 3rem;
    }
    
    .ns-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .ns-reason-item {
        padding: 1rem;
    }
    
    .ns-process-steps {
        gap: 0.75rem;
		.ns-extra-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ns-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ns-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ns-reservas-extra {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .ns-reservas-title {
        font-size: 2rem;
    }
    
    .ns-reservas-section-title {
        font-size: 1.75rem;
    }
    
    .ns-contact-title {
        font-size: 1.5rem;
    }
    
    .ns-reason-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .ns-reason-icon {
        margin-top: 0;
    }
    
    .ns-contact-salon {
        padding: 1rem;
    }
    
    .ns-phone-btn {
        padding: 0.875rem 1rem;
    }
    
    .ns-reservas-final-cta {
        padding: 2rem 1rem;
    }
    
    .ns-reservas-final-cta h2 {
        font-size: 1.75rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ns-reason-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.ns-reason-item:nth-child(1) { animation-delay: 0.1s; }
.ns-reason-item:nth-child(2) { animation-delay: 0.2s; }
.ns-reason-item:nth-child(3) { animation-delay: 0.3s; }
.ns-reason-item:nth-child(4) { animation-delay: 0.4s; }
.ns-reason-item:nth-child(5) { animation-delay: 0.5s; }
.ns-reason-item:nth-child(6) { animation-delay: 0.6s; }

.ns-contact-salon {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.ns-contact-salon:nth-child(1) { animation-delay: 0.2s; }
.ns-contact-salon:nth-child(2) { animation-delay: 0.4s; }
.ns-contact-salon:nth-child(3) { animation-delay: 0.6s; }

/* Estados de enfoque */
.ns-phone-btn:focus,
.ns-whatsapp-btn:focus,
.ns-cta-btn:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
}

/* Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    .ns-reason-item,
    .ns-contact-salon,
    .ns-phone-btn,
    .ns-whatsapp-btn,
    .ns-cta-btn {
        animation: none;
        transition: none;
    }
    
    .ns-reason-item:hover,
    .ns-phone-btn:hover,
    .ns-cta-btn:hover {
        transform: none;
    }
}

/* Efectos adicionales */
.ns-phone-btn {
    position: relative;
    overflow: hidden;
}

.ns-phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ns-phone-btn:hover::before {
    left: 100%;
}

/* Estilos para impresión */
@media print {
    .ns-reservas-page {
        background: white;
    }
    
    .ns-phone-btn,
    .ns-whatsapp-btn,
    .ns-cta-btn {
        background: white !important;
        color: black !important;
        border: 1px solid black !important;
    }
    
    .ns-contact-alternative {
        display: none;
    }
}
	
	