/* ============================================================
   SISTEMA DE DISEÑO NDIKANDIÍ - COMPONENTES MODULARES
   ============================================================ */

:root {
    --ndk-salmon: #ffa292;
    --ndk-salmon-soft: #ffb3a7;
    --ndk-salmon-pale: #fff5f3;
    --ndk-mauve: #c28585; /* Color Hero */
    --ndk-text: #4a4a4a;
    --ndk-text-light: #64748b;
    --ndk-dark: #2d2d2d;
    --ndk-bg-light: #ffffff;
    --ndk-bg-section: #fff5f3;
}

/* --- RESET Y UTILIDADES BÁSICAS --- */
.ndk-m-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--ndk-text) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    box-sizing: border-box;
}
.ndk-m-wrapper *, .ndk-m-wrapper *::before, .ndk-m-wrapper *::after {
    box-sizing: inherit;
}
.ndk-serif { font-family: 'Instrument Serif', serif !important; }
.ndk-serif-italic { font-style: italic; font-weight: 300; color: var(--ndk-salmon); }
.ndk-hero-block .ndk-serif-italic { color: var(--ndk-mauve); }

.ndk-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.ndk-text-center { text-align: center; }
.ndk-mt-auto { margin-top: auto; }
.ndk-hidden { display: none !important; }
@media (min-width: 768px) { .ndk-md-block { display: block !important; } }

/* --- ANIMACIONES --- */
@keyframes ndkFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ndk-animate { animation: ndkFadeIn 0.8s ease-out forwards; }

/* --- TIPOGRAFÍA EDITORIAL (UNIFICADA) --- */
.ndk-versalitas-label {
    font-size: 13px; font-weight: 700; color: var(--ndk-salmon);
    text-transform: uppercase; letter-spacing: 0.4em; display: block; margin-bottom: 1rem;
}
.ndk-section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1;
    color: var(--ndk-dark); margin-bottom: 1.5rem;
}
.ndk-divider { width: 80px; height: 2px; background: var(--ndk-salmon); opacity: 0.3; }
.ndk-paragraph { font-size: 15px; color: var(--ndk-text-light); font-weight: 300; line-height: 1.7; }
.ndk-highlight { font-weight: 700; color: var(--ndk-salmon); }

/* --- BOTONES (SISTEMA UNIFICADO) --- */
.ndk-btn {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9999px; font-weight: 700; text-transform: uppercase;
    text-decoration: none; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer; text-align: center;
}
/* Botones Hero (Mauve) */
.ndk-btn-hero { padding: 1.4rem 3.2rem; font-size: 13px; letter-spacing: 0.15em; }
.ndk-btn-hero.primary { background: var(--ndk-mauve); color: white; box-shadow: 0 12px 30px rgba(194, 133, 133, 0.35); }
.ndk-btn-hero.primary:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(194, 133, 133, 0.25); }
.ndk-btn-hero.secondary { background: white; color: var(--ndk-mauve); border: 2px solid var(--ndk-mauve); }
.ndk-btn-hero.secondary:hover { background: var(--ndk-mauve); color: white; transform: translateY(-5px); }

/* Botones Estándar (Salmón) */
.ndk-btn-solid {
    background: var(--ndk-salmon); color: white; padding: 1.2rem 3rem; font-size: 13px;
    letter-spacing: 0.2em; box-shadow: 0 12px 30px rgba(255, 162, 146, 0.3); width: 100%;
}
.ndk-btn-solid:hover { background: var(--ndk-salmon-soft); transform: translateY(-5px); box-shadow: 0 18px 45px rgba(255, 162, 146, 0.4); }
.ndk-btn-outline {
    background: transparent; border: 1.5px solid var(--ndk-salmon); color: var(--ndk-salmon);
    padding: 1rem; font-size: 12px; letter-spacing: 0.1em; width: 100%;
}
.ndk-btn-outline:hover { background: var(--ndk-salmon-pale); }
.ndk-btn-outline-white { border-color: rgba(255,255,255,0.4); color: white; }
.ndk-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* --- LAYOUTS ESTRUCTURALES (Reemplazo Tailwind) --- */
.ndk-layout-split { display: flex; flex-direction: column; gap: 4rem; align-items: center; }
@media (min-width: 1024px) {
    .ndk-layout-split { flex-direction: row; gap: 6rem; }
    .ndk-col-1-2 { width: 50%; }
}
.ndk-grid-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
@media (min-width: 768px) { .ndk-grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ndk-grid-cards { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   ESTILOS ESPECÍFICOS POR BLOQUE
   ============================================================ */

/* 1. HERO BLOCK */
.ndk-hero-block {
    position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 5rem 1.5rem; border-radius: 0 0 4rem 4rem; overflow: hidden; margin-bottom: 2rem;
    background-image: url('https://ndikandii.com/wp-content/uploads/2020/08/Masaje-a-Domicilio-en-Pareja.jpg');
    background-size: cover; background-position: center;
}
.ndk-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: linear-gradient(135deg, rgba(255, 245, 243, 0.92) 0%, rgba(255, 225, 218, 0.8) 100%);
}
.ndk-hero-content { position: relative; z-index: 2; max-width: 950px; }
.ndk-brand-label { color: var(--ndk-mauve); letter-spacing: 0.6em; display: block; margin-bottom: 2rem; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.ndk-hero-title { font-size: clamp(2.8rem, 8vw, 5rem); line-height: 1.05; color: var(--ndk-dark); margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.ndk-hero-subtitle { font-size: 1.4rem; font-weight: 400; color: var(--ndk-text); margin-bottom: 0.75rem; }
.ndk-hero-tagline { font-size: 1.1rem; font-weight: 300; opacity: 0.9; margin-bottom: 3.5rem; }
.ndk-hero-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
    .ndk-hero-block { min-height: 75vh; padding: 4rem 1rem; border-radius: 0 0 3rem 3rem; }
    .ndk-btn-hero { width: 100%; max-width: 320px; padding: 1.2rem 2rem; }
}

/* 2. BLOQUE EXPERIENCIA */
.ndk-experience-section { padding: 6rem 1.5rem; background-color: var(--ndk-bg-light); overflow: hidden; }
.ndk-features-list { display: flex; flex-direction: column; gap: 3.5rem; }
.ndk-feature-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.ndk-icon-wrapper { flex-shrink: 0; width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease; }
.ndk-feature-item:hover .ndk-icon-wrapper { transform: translateY(-8px); }
.ndk-icon-wrapper img { width: 100%; height: auto; opacity: 0.9; }
.ndk-feature-title { font-size: 1.6rem; color: var(--ndk-dark); margin-bottom: 0.75rem; line-height: 1.2; }
.ndk-image-container { position: relative; z-index: 10; border-radius: 3.5rem; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.ndk-main-img { width: 100%; height: auto; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.ndk-image-container:hover .ndk-main-img { transform: scale(1.05); }
.ndk-blob-decoration { position: absolute; bottom: -2rem; left: -2rem; width: 18rem; height: 18rem; background: var(--ndk-salmon-pale); border-radius: 50%; z-index: -1; filter: blur(40px); opacity: 0.8; }

/* 3. BLOQUE COSTOS */
.ndk-pricing-section { padding: 6rem 1.5rem; background-color: var(--ndk-bg-section); border-radius: 4rem; margin: 2rem 1.5rem; }
.ndk-price-card {
    background: var(--ndk-bg-light); padding: 4rem 1.8rem 3rem 1.8rem; border-radius: 3.5rem; display: flex; flex-direction: column;
    text-align: center; transition: all 0.5s ease; position: relative; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.ndk-price-card.featured { border: 2px solid var(--ndk-salmon); }
.ndk-price-card.featured-dark { border: 1px solid var(--ndk-dark); }
.ndk-price-card.dark { background: #1a1a1a; border: none; }
.ndk-price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.ndk-old-price-styled { text-decoration: line-through; color: #cbd5e1; font-size: 1.2rem; }
.ndk-amount-hero { font-size: 3.5rem; font-weight: 300; color: var(--ndk-dark); line-height: 1; }
.ndk-amount-hero span { font-size: 1.2rem; vertical-align: super; font-weight: 600; margin-right: 2px; }
.ndk-price-flex { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.ndk-versalitas-sub { display: block; text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-weight: 800; color: #94a3b8; margin-top: 1.2rem; }
.ndk-benefits-list { margin: 2.5rem 0; text-align: left; display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; }
.ndk-benefits-list li { font-size: 15px; color: var(--ndk-text-light); font-weight: 300; display: flex; gap: 0.5rem;}
.ndk-bullet { color: var(--ndk-salmon); font-weight: bold; }
.ndk-badge, .ndk-badge-dark {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); padding: 0.6rem 1.8rem; border-radius: 99px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; white-space: nowrap; z-index: 10;
}
.ndk-badge { background: var(--ndk-salmon); color: white; }
.ndk-badge-dark { background: var(--ndk-dark); color: white; }
.ndk-legal-note { font-size: 11px; color: #94a3b8; margin-top: 0.5rem; }
.ndk-legal-note a { color: var(--ndk-salmon); font-weight: 600; text-decoration: underline; }

/* 4. BLOQUE PILARES */
.ndk-pilares-section { padding: 6rem 1.5rem; background-color: var(--ndk-bg-section); border-radius: 4rem; margin: 2rem 1.5rem; box-shadow: inset 0 0 60px rgba(255, 162, 146, 0.05); border: 1px solid rgba(255, 162, 146, 0.1); }
.ndk-tagline-hero { font-size: 14px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.25em; line-height: 1.8; }
.ndk-pillar-card {
    background: var(--ndk-bg-light); padding: 3.5rem 2.5rem; border-radius: 3rem; display: flex; flex-direction: column;
    align-items: center; text-align: center; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(0,0,0,0.02); box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.ndk-pillar-card:hover { transform: translateY(-15px); box-shadow: 0 40px 70px rgba(255, 162, 146, 0.15); border-color: var(--ndk-salmon-soft); }
.ndk-pillar-card.highlighted { border: 1.5px solid rgba(255, 162, 146, 0.3); }
.ndk-icon-circle {
    width: 5.5rem; height: 5.5rem; border-radius: 50%; background: var(--ndk-salmon-pale); color: var(--ndk-salmon);
    display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; transition: all 0.4s ease;
}
.ndk-pillar-card:hover .ndk-icon-circle { background: var(--ndk-salmon); color: white; transform: scale(1.1); }
.ndk-versalitas-card { font-size: 14px; font-weight: 800; color: var(--ndk-salmon); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; line-height: 1.3; }

@media (max-width: 1024px) {
    .ndk-pricing-section, .ndk-pilares-section { padding: 4rem 1rem; border-radius: 3rem; margin: 1rem; }
    .ndk-price-card { padding: 3rem 1.2rem; }
    .ndk-amount-hero { font-size: 2.8rem; }
    .ndk-pillar-card { padding: 3rem 1.5rem; }
}