/*
 Theme Name:   Skin Studio - Astra Child
 Template:     astra
 Version:      3.0.0
 Description:  Rediseño Figma 2026 - Skin Studio Home (réplica exacta frame 50:1452)
*/

/* ========== DESIGN TOKENS (Figma) ========== */
:root {
    --gold: #d3b174;
    --gold-soft: #f0e6c5;
    --gold-border-10: rgba(211, 177, 116, 0.1);
    --gold-border-15: rgba(211, 177, 116, 0.15);
    --gold-border-20: rgba(211, 177, 116, 0.2);
    --gold-border-30: rgba(211, 177, 116, 0.3);
    --gold-dot: #d4af37;
    --cream: #faf5e5;
    --card: #fdfcfa;
    --ink: #0f172a;
    --ink-80: rgba(15, 23, 42, 0.8);
    --ink-70: rgba(15, 23, 42, 0.7);
    --ink-60: rgba(15, 23, 42, 0.6);
    --ink-50: rgba(15, 23, 42, 0.5);
    --slate: #64748b;
    --footer-bg: #232323;
    --font-serif: 'Inria Serif', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --shadow-card-lg: drop-shadow(0px 10px 7.5px rgba(0, 0, 0, 0.1)) drop-shadow(0px 4px 3px rgba(0, 0, 0, 0.1));
    --shadow-card-sm: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* ========== GLOBAL ========== */
.sk-custom-page,
.sk-custom-page * { box-sizing: border-box; }
body.sk-custom-page {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
.sk-custom-page img { max-width: 100%; height: auto; }
.sk-custom-page h1, .sk-custom-page h2, .sk-custom-page h3,
.sk-custom-page h4, .sk-custom-page h5, .sk-custom-page p,
.sk-custom-page ul { margin: 0; padding: 0; }
.sk-custom-page a { text-decoration: none; color: inherit; }
.sk-custom-page button { font-family: inherit; cursor: pointer; }
/* Ocultar chrome de Astra / admin en esta plantilla */
.sk-custom-page .site-header,
.sk-custom-page .site-footer,
.sk-custom-page #ast-scroll-top { display: none !important; }

/* Encabezado de sección (Inria Serif Light 60px) */
.sk-section-head { text-align: center; }
.sk-section-head h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -1.2363px;
    color: var(--ink);
}
.sk-section-head p {
    margin-top: 24px;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4492px;
    color: var(--ink-60);
}

/* ========== PROMOBAR ========== */
.sk-promobar {
    background: var(--gold);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sk-promobar p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: var(--ink);
    text-align: center;
}
.sk-promobar p span { font-weight: 400; }

/* ========== HEADER ========== */
.sk-header {
    background: #000;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 226px 0 147px;
    position: relative;
    z-index: 50;
}
.sk-logo { display: flex; align-items: center; flex-shrink: 0; }
.sk-logo img { width: 233px; height: 42px; }
body.sk-custom-page .sk-nav {
    display: flex !important;
}
body.sk-custom-page .sk-nav > ul,
body.sk-custom-page .sk-nav > div > ul {
    display: flex !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.sk-custom-page .sk-nav > ul > li,
body.sk-custom-page .sk-nav > div > ul > li {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}
body.sk-custom-page .sk-nav a {
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: -0.1504px !important;
    color: #fff !important;
    display: block !important;
    transition: color 0.2s ease !important;
}
body.sk-custom-page .sk-nav a:hover {
    color: var(--gold) !important;
}

/* Dropdown Submenu Styles */
body.sk-custom-page .sk-nav .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #0d0d0d !important;
    border: 1px solid var(--gold-border-30) !important;
    border-radius: 8px !important;
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-width: 220px !important;
    list-style: none !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 100 !important;
}

/* Hover show */
body.sk-custom-page .sk-nav li:hover > .sub-menu,
body.sk-custom-page .sk-nav li:focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

body.sk-custom-page .sk-nav .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}

body.sk-custom-page .sk-nav .sub-menu a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 20px !important;
    display: block !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important;
}

body.sk-custom-page .sk-nav .sub-menu a:hover {
    color: var(--gold) !important;
}

/* Caret indicators for items with dropdowns */
body.sk-custom-page .sk-nav > ul > li.menu-item-has-children > a::after,
body.sk-custom-page .sk-nav > div > ul > li.menu-item-has-children > a::after {
    content: '▾' !important;
    margin-left: 6px !important;
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}
body.sk-custom-page .sk-nav > ul > li.menu-item-has-children:hover > a::after,
body.sk-custom-page .sk-nav > div > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg) !important;
    color: var(--gold) !important;
}
.sk-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--gold);
    border-radius: 9999px;
    padding: 8px 11px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sk-header-cta:hover {
    background: #e6c892;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 177, 116, 0.35);
}
.sk-header-cta img { width: 16px; height: 16px; transition: transform 0.3s ease; }
.sk-header-cta:hover img { transform: rotate(-5deg) scale(1.1); }
.sk-mobile-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

/* ========== HERO ========== */
.sk-hero {
    position: relative;
    height: 700px;
    background: #000;
    overflow: hidden;
}
.sk-hero-media,
.sk-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sk-hero-media img { object-fit: cover; object-position: center; }
.sk-hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}
.sk-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    height: 100%;
    padding-top: 143px;
}
.sk-hero-title {
    font-family: 'Inria Serif', Georgia, serif !important;
    font-weight: 700;
    font-size: 50px;
    line-height: 57px;
    letter-spacing: -1.2363px;
    color: #fff;
    max-width: 648px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}
.sk-hero-title em { font-style: italic; }
.sk-hero-subtitle {
    margin-top: 19px;
    font-weight: 500;
    font-size: 22px;
    line-height: 39px;
    letter-spacing: 0.0703px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 918px;
}
.sk-hero-cta {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 28px 0 16px;
    background: var(--gold);
    border-radius: 9999px;
    filter: var(--shadow-card-lg);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4395px;
    color: var(--ink);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.sk-hero-cta:hover {
    background: #e6c892;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(211, 177, 116, 0.4);
    filter: none;
}
.sk-hero-cta:hover img {
    transform: rotate(-5deg) scale(1.1);
}
.sk-hero-cta img {
    transition: transform 0.3s ease;
}
.sk-hero-badges {
    position: absolute;
    bottom: 71px;
    left: 0;
    display: flex;
    gap: 13px;
}
.sk-hero-badge {
    width: 266.66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--gold-border-20);
    border-radius: 16px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: var(--ink);
    text-align: center;
    white-space: pre;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sk-hero-badge:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(211, 177, 116, 0.3), 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.sk-hero-badge:hover span {
    color: var(--gold);
}
.sk-hero-badge span { font-weight: 400; transition: color 0.3s ease; }

/* ========== NUESTROS TRATAMIENTOS ========== */
.sk-treatments {
    background: #fff;
    padding: 100px 32px;
}
.sk-treatments-grid {
    max-width: var(--container);
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
body.sk-custom-page .sk-treatment-card {
    background: var(--card) !important;
    border: 1px solid var(--gold-border-10) !important;
    border-radius: 12px !important;
    height: 430px !important;
    padding: 40px 15px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer !important;
}
body.sk-custom-page .sk-treatment-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(211, 177, 116, 0.2) !important;
    border-color: var(--gold) !important;
}
body.sk-custom-page .sk-treatment-card:hover .sk-treatment-icon {
    transform: scale(1.08) !important;
}
body.sk-custom-page .sk-treatment-icon {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    background: var(--gold-soft) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-bottom: 32px !important;
    transition: transform 0.3s ease !important;
}
body.sk-custom-page .sk-treatment-icon img {
    width: 48px !important;
    height: 48px !important;
}
body.sk-custom-page .sk-treatment-title {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    min-height: 64px !important;
    font-weight: 300 !important;
    font-size: 24px !important;
    line-height: 32px !important;
    letter-spacing: 0.0703px !important;
    color: var(--ink) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}
.sk-treatment-title.sk-font-serif { font-family: var(--font-serif); }
body.sk-custom-page .sk-treatment-desc {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 52px !important;
    font-weight: 300 !important;
    font-size: 20px !important;
    line-height: 26px !important;
    letter-spacing: -0.3125px !important;
    color: var(--ink-60) !important;
}
body.sk-custom-page .sk-treatment-link {
    margin-top: auto !important;
    margin-bottom: 55px !important;
    font-weight: 300 !important;
    font-size: 22px !important;
    line-height: 40px !important;
    letter-spacing: -0.63px !important;
    color: #D3B174 !important;
    text-decoration: none !important;
    border-bottom: 2px solid #D3B174 !important;
    padding-bottom: 2px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}
body.sk-custom-page .sk-treatment-link:hover {
    color: #c19a5e !important;
    border-bottom-color: #c19a5e !important;
    letter-spacing: -0.2px !important;
}

/* ========== RESULTADOS REALES ========== */
.sk-results {
    background: var(--cream);
    padding: 71px 32px 130px;
}
.sk-results-tabs {
    max-width: var(--container);
    margin: 40px auto 0;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 3px;
    gap: 4px;
}
body.sk-custom-page .sk-results-tabs .sk-tab,
body.sk-custom-page .sk-tab {
    flex: 0 1 auto !important;
    height: 29px !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    background: transparent !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    padding: 0 16px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: -0.1504px !important;
    color: var(--ink) !important;
    text-align: center !important;
    min-height: 0 !important;
    min-width: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
}
body.sk-custom-page .sk-results-tabs .sk-tab.is-active,
body.sk-custom-page .sk-tab.is-active {
    background: #fff !important;
    color: var(--ink) !important;
}
.sk-results-carousel {
    position: relative !important;
    max-width: var(--container);
    margin: 76px auto 0;
    margin-bottom: 40px;
    overflow: visible !important;
}
.sk-results-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}
.sk-results-track::-webkit-scrollbar { display: none; }
.sk-result-card {
    flex: 0 0 339px;
    width: 339px;
    height: 597px;
    background: #fff;
    border: 1px solid var(--gold-border-10);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.sk-result-img {
    height: 449px;
    background: var(--gold-soft);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.sk-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: none;
}
.sk-result-img img.img-antes {
    opacity: 1;
    z-index: 1;
}
@keyframes sk-pulse-after {
    0%, 35%   { opacity: 0; }
    45%, 65%  { opacity: 1; }
    75%, 100% { opacity: 0; }
}
.sk-result-img img.img-despues {
    opacity: 0;
    z-index: 2;
    animation: sk-pulse-after 7s infinite ease-in-out;
}
.sk-result-card:hover .sk-result-img img.img-despues {
    opacity: 1;
    animation: none;
}
.sk-result-label {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 12px;
    background: #F9F3E6;
    color: #0F172A;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    pointer-events: none;
    transition: none;
}
.sk-result-label-antes {
    opacity: 1;
    z-index: 4;
}
@keyframes sk-pulse-label {
    0%, 35%   { opacity: 0; }
    45%, 65%  { opacity: 1; }
    75%, 100% { opacity: 0; }
}
.sk-result-label-despues {
    opacity: 0;
    z-index: 4;
    animation: sk-pulse-label 7s infinite ease-in-out;
}
.sk-result-card:hover .sk-result-label-despues {
    opacity: 1;
    animation: none;
}
.sk-result-body { padding: 28px 28px 0; }
.sk-result-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
}
.sk-result-pill {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 9999px;
    background: rgba(211, 177, 116, 0.1);
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--gold);
}
.sk-result-cat {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink-50);
}
.sk-result-procedure {
    margin-top: 6px;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: #D3B174;
}
.sk-result-title {
    margin-top: 12px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.3125px;
    color: var(--ink);
}
body.sk-custom-page .sk-results-carousel .sk-carousel-btn,
body.sk-custom-page .sk-carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #D3B174 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    pointer-events: auto !important;
}
body.sk-custom-page .sk-results-carousel .sk-carousel-btn:hover,
body.sk-custom-page .sk-carousel-btn:hover {
    background: #D3B174 !important;
    box-shadow: 0 6px 20px rgba(211, 177, 116, 0.35) !important;
}
body.sk-custom-page .sk-carousel-btn:hover svg path {
    stroke: #fff !important;
}
body.sk-custom-page .sk-carousel-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.sk-custom-page .sk-carousel-btn svg path {
    stroke: #0F172A !important;
    transition: stroke 0.2s ease !important;
}
.sk-carousel-btn img { width: 18px; height: 18px; }
.sk-carousel-prev { left: 12px; }
.sk-carousel-next { right: 12px; }
body.sk-custom-page .sk-carousel-btn.sk-disabled { opacity: 0.3 !important; pointer-events: none !important; }
.sk-results-note {
    text-align: center;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--slate);
}

/* ========== NUESTROS SERVICIOS ========== */
.sk-services {
    background: var(--cream);
    padding: 130px 32px 115px;
}
.sk-services-grid {
    max-width: var(--container);
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 84px;
}
.sk-service-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.sk-service-img {
    position: relative;
    margin: -12px 0 0;
}
.sk-service-img img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 22px;
}
.sk-service-pills {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.sk-service-pills.sk-service-body-left {
    justify-content: flex-start;
    padding: 0 40px;
}
.sk-service-pills.sk-service-body-right {
    justify-content: flex-end;
    padding: 0 40px;
}
.sk-service-pills span {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 9999px;
    background: var(--gold);
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: #fff;
}
.sk-service-body {
    padding: 19px 40px 38px;
    text-align: left;
}

.sk-service-body h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: -1.2363px;
    color: var(--ink);
}

.sk-service-body-right {
    padding: 19px 40px 38px;
    text-align: right;
}
.sk-service-link {
    display: inline-block;
    font-weight: 300;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.4492px;
    color: #D3B174 !important;
    text-decoration: underline !important;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    text-underline-position: under;
}

/* ========== ESTADÍSTICAS ========== */
.sk-stats {
    background: #fff;
    padding: 0 32px;
}
.sk-stats-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    transform: translateY(0);
    padding-top: 96px;
}
body.sk-custom-page .sk-stat-card {
    height: 298px !important;
    background: var(--card) !important;
    border: 1px solid var(--gold-border-10) !important;
    border-radius: 12px !important;
    filter: drop-shadow(0px 1px 1.5px rgba(0, 0, 0, 0.1)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 48px !important;
}
body.sk-custom-page .sk-stat-icon {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--gold-soft) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.sk-custom-page .sk-stat-icon img {
    width: 40px !important;
    height: 40px !important;
}
body.sk-custom-page .sk-stat-number {
    margin-top: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 300 !important;
    font-size: 48px !important;
    line-height: 48px !important;
    letter-spacing: 0.3516px !important;
    color: var(--ink) !important;
    white-space: nowrap !important;
}
body.sk-custom-page .sk-stat-label {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: -0.3125px !important;
    color: var(--ink-60) !important;
    max-width: 160px !important;
}

/* ========== TESTIMONIOS ========== */
.sk-testimonials {
    background: #fff;
    padding: 112px 32px 0;
}
.sk-testimonials-viewport {
    max-width: 896px;
    margin: 64px auto 0;
    overflow: hidden;
}
.sk-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.sk-testimonial-slide {
    flex: 0 0 100%;
    padding: 0 16px;
}
.sk-testimonial-card {
    background: var(--card);
    border: 1px solid var(--gold-border-10);
    border-radius: 12px;
    filter: var(--shadow-card-lg);
    min-height: 549px;
    padding: 64px 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sk-testimonial-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 2px var(--gold-border-30);
    overflow: hidden;
    flex-shrink: 0;
}
.sk-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.sk-testimonial-stars {
    margin-top: 32px;
    display: flex;
    gap: 6px;
}
.sk-testimonial-stars img { width: 24px; height: 24px; }
.sk-testimonial-quote {
    margin-top: 24px;
    max-width: 734px;
    font-style: italic;
    font-weight: 300;
    font-size: 24px;
    line-height: 39px;
    letter-spacing: 0.0703px;
    color: var(--ink-80);
}
.sk-testimonial-name {
    margin-top: 40px;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.0703px;
    color: var(--ink);
}
.sk-testimonial-treatment {
    margin-top: 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: var(--ink-60);
}
.sk-testimonial-verified {
    margin-top: 30px;
    width: 384px;
    max-width: 100%;
    border-top: 1px solid var(--gold-border-10);
    padding: 33px 0 20px;
}
.sk-testimonial-verified p {
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink-50);
}
.sk-testimonials-dots {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.sk-testimonials-dots button {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    border: 0;
    padding: 0;
    background: var(--gold-border-15);
    transition: all 0.3s ease;
}
.sk-testimonials-dots button.is-active {
    width: 40px;
    background: var(--gold-dot);
}

/* ========== EQUIPO MÉDICO ========== */
.sk-team {
    background: #fff;
    padding: 128px 32px 0;
}
.sk-team-grid {
    max-width: 1024px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}
body.sk-custom-page .sk-team-card {
    background: var(--card) !important;
    border: 1px solid var(--gold-border-10) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}
body.sk-custom-page .sk-team-card-alt { border-color: #eef1f0 !important; }
body.sk-custom-page .sk-team-photo {
    height: 621px !important;
    overflow: hidden !important;
}
body.sk-custom-page .sk-team-photo-gold { background: var(--gold-soft) !important; }
body.sk-custom-page .sk-team-photo-gray { background: #ecf0f1 !important; }
body.sk-custom-page .sk-team-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    display: block !important;
}
body.sk-custom-page .sk-team-body {
    min-height: 332px !important;
    height: auto !important;
    padding: 40px !important;
}
body.sk-custom-page .sk-team-body h3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    font-family: var(--font-sans) !important;
    font-weight: 300 !important;
    font-size: 30px !important;
    line-height: 36px !important;
    letter-spacing: 0.3955px !important;
    color: var(--ink) !important;
}
body.sk-custom-page .sk-team-specialty {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    font-weight: 300 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    letter-spacing: -0.4395px !important;
    color: var(--gold) !important;
}
body.sk-custom-page .sk-team-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}
.sk-team-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.3125px;
    color: var(--ink-70);
}
.sk-team-bullet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sk-team-bullet img { width: 20px; height: 20px; }

/* ========== ¿CÓMO FUNCIONA? ========== */
.sk-process {
    background: var(--cream);
    padding: 118px 32px 133px;
    margin-top: 128px;
}
.sk-process-grid {
    max-width: 964px;
    margin: 61px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}
.sk-process-card {
    background: #fff;
    border: 1px solid var(--gold-border-10);
    border-radius: 12px;
    box-shadow: var(--shadow-card-sm);
    padding: 48px;
}
.sk-process-card-wide { grid-column: 1 / -1; }
.sk-process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sk-process-icon img { width: 40px; height: 40px; }
.sk-process-card h3 {
    margin-top: 32px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.3955px;
    color: var(--ink);
    max-width: 531px;
}
.sk-process-card p {
    margin-top: 20px;
    font-weight: 300;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -0.4395px;
    color: var(--ink-70);
    max-width: 648px;
}

/* ========== ENCUÉNTRANOS ========== */
.sk-location {
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 52.5%);
}
.sk-location-left {
    padding: 94px 48px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 660px;
    justify-self: end;
    width: 100%;
}
.sk-location-head h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -1.2363px;
    color: var(--ink);
}
.sk-location-head p {
    margin-top: 17px;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4492px;
    color: var(--ink-60);
}
.sk-location-cards {
    margin-top: 50px;
    width: 100%;
    max-width: 508px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.sk-location-card {
    background: #fff;
    border: 1px solid var(--gold-border-10);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.sk-location-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sk-location-icon img { width: 24px; height: 24px; }
.sk-location-info h3 {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4492px;
    color: var(--ink);
}
.sk-location-info p {
    margin-top: 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: var(--ink-70);
}
.sk-location-btn-outline {
    display: inline-flex;
    align-items: center;
    height: 32px;
    margin-top: 12px;
    padding: 0 12px;
    background: var(--card);
    border: 1px solid var(--gold-border-30);
    border-radius: 9999px;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink);
}
.sk-location-btn-gold {
    display: inline-flex;
    align-items: center;
    height: 32px;
    margin-top: 12px;
    padding: 0 12px;
    background: var(--gold);
    border-radius: 9999px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink);
}

/* Panel oscuro CTA */
.sk-location-cta {
    background: #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 86px 80px 96px;
}
.sk-cta-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1.2363px;
    color: #fff;
    max-width: 504px;
}
.sk-cta-subtitle {
    margin-top: 25px;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: 0.0703px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 672px;
}
.sk-cta-subtitle em {
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
}
.sk-cta-card {
    margin-top: 46px;
    max-width: 537px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
.sk-cta-form { padding: 48px; }
.sk-cta-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sk-cta-field label {
    display: block;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink-70);
    margin-bottom: 8px;
}
.sk-cta-field input {
    width: 100%;
    height: 48px;
    background: var(--card);
    border: 1px solid var(--gold-border-20);
    border-radius: 12px;
    padding: 4px 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.1504px;
    color: var(--ink);
}
.sk-cta-field input::placeholder { color: var(--slate); }
.sk-cta-submit {
    margin-top: 32px;
    width: 100%;
    height: 56px;
    background: var(--ink);
    border: 0;
    border-radius: 9999px;
    filter: var(--shadow-card-lg);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4395px;
    color: #fff;
}
.sk-cta-divider {
    margin-top: 20px;
    position: relative;
    text-align: center;
    height: 20px;
}
.sk-cta-divider::before {
    content: '';
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    border-top: 1px solid var(--gold-border-20);
}
.sk-cta-divider span {
    position: relative;
    background: #fff;
    padding: 0 16px;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: var(--ink-50);
}
.sk-cta-whatsapp {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 9999px;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4395px;
    color: var(--ink);
}
.sk-cta-privacy {
    margin-top: 24px;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: -0.1504px;
    color: var(--ink-50);
    max-width: 449px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.sk-footer {
    background: var(--footer-bg);
    padding: 96px 32px 24px;
}
.sk-footer-container {
    max-width: var(--container);
    margin: 0 auto;
}
.sk-footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 230px);
    justify-content: space-between;
}
.sk-footer-logo { width: 200px; height: auto; display: block; }
.sk-footer-brand p {
    margin-top: 24px;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.3125px;
    color: rgba(255, 255, 255, 0.6);
}
.sk-footer-social {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}
.sk-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sk-footer-social a img { width: 20px; height: 20px; }
.sk-footer-col h4 {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4395px;
    color: #fff;
}
.sk-footer-col ul {
    margin-top: 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sk-footer-col ul a {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: rgba(255, 255, 255, 0.6);
}
.sk-footer-col ul a:hover { color: var(--gold); }
.sk-footer-divider {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sk-footer-contact {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sk-footer-contact h5 {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: rgba(255, 255, 255, 0.4);
}
.sk-footer-contact p {
    margin-top: 12px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: rgba(255, 255, 255, 0.8);
}
.sk-footer-contact + .sk-footer-divider { margin-top: 40px; }
.sk-footer-bottom {
    margin-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.sk-footer-bottom p {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1504px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== WHATSAPP FLOTANTE ========== */
.sk-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 77px;
    height: 77px;
    z-index: 99;
    transition: transform 0.2s ease;
}
.sk-whatsapp-float:hover { transform: scale(1.05); }
.sk-whatsapp-float img { width: 77px; height: 77px; display: block; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .sk-header { padding: 0 32px; }
    .sk-hero-inner { padding-left: 32px; padding-right: 32px; }
    .sk-hero-badges { left: 32px; right: 32px; flex-wrap: wrap; }
    .sk-carousel-prev { left: 8px; }
    .sk-carousel-next { right: 8px; }
    .sk-location { grid-template-columns: 1fr 1fr; }
    .sk-location-left { justify-self: stretch; max-width: none; }
    .sk-location-cta { padding: 64px 40px; }
    .sk-footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; justify-content: start; }
}

@media (max-width: 1024px) {
    .sk-treatments-grid,
    .sk-stats-grid { grid-template-columns: repeat(2, 1fr); }
    body.sk-custom-page .sk-stat-card { height: auto !important; padding-bottom: 40px !important; }
    body.sk-custom-page .sk-treatment-card { height: auto !important; padding-bottom: 40px !important; }
    body.sk-custom-page .sk-treatment-link { margin-top: 24px !important; margin-bottom: 0 !important; }
    .sk-team-grid { grid-template-columns: 1fr; max-width: 520px; }
    body.sk-custom-page .sk-team-photo { height: 480px !important; }
    .sk-services-grid { grid-template-columns: 1fr; max-width: 580px; row-gap: 48px; }
    .sk-location { grid-template-columns: 1fr; }
    .sk-location-left { padding: 80px 32px 60px; }
}

@media (max-width: 860px) {
    body.sk-custom-page .sk-nav {
        display: none !important;
        position: absolute !important;
        top: 94px !important;
        left: 0 !important;
        right: 0 !important;
        background: #000 !important;
        padding: 24px 32px !important;
        z-index: 60 !important;
    }
    body.sk-custom-page .sk-nav.is-open { display: flex !important; }
    body.sk-custom-page .sk-nav > ul,
    body.sk-custom-page .sk-nav > div > ul {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }
    body.sk-custom-page .sk-nav .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 12px 0 0 16px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        min-width: 0 !important;
    }
    .sk-header-cta { display: none; }
    .sk-mobile-toggle { display: block; }

    .sk-section-head h2,
    .sk-location-head h2 { font-size: 40px; line-height: 44px; }
    .sk-hero { height: auto; padding-bottom: 48px; }
    .sk-hero-inner { padding-top: 80px; }
    .sk-hero-title { font-size: 36px; line-height: 44px; }
    .sk-hero-subtitle { font-size: 18px; line-height: 30px; }
    .sk-hero-badges {
        position: static;
        margin-top: 48px;
        flex-direction: column;
    }
    .sk-hero-badge { width: 100%; }

    .sk-treatments { padding: 64px 24px; }
    .sk-treatments-grid { grid-template-columns: 1fr; max-width: 340px; }
    .sk-results { padding: 64px 24px 80px; }
    .sk-results-tabs { flex-wrap: wrap; height: auto; }
    .sk-tab { flex: 1 1 30%; }
    .sk-services { padding: 80px 24px; }
    .sk-service-body h3 { font-size: 30px; line-height: 44px; }
    .sk-stats-grid { grid-template-columns: 1fr; max-width: 340px; padding-top: 64px; }
    .sk-testimonials { padding: 64px 24px 0; }
    .sk-testimonial-card { padding: 40px 24px 0; }
    .sk-testimonial-quote { font-size: 18px; line-height: 30px; }
    .sk-team { padding: 80px 24px 0; }
    body.sk-custom-page .sk-team-photo { height: 360px !important; }
    body.sk-custom-page .sk-team-body { height: auto !important; padding: 32px 24px !important; }
    .sk-process { padding: 64px 24px 80px; margin-top: 80px; }
    .sk-process-grid { grid-template-columns: 1fr; }
    .sk-process-card { padding: 32px 24px; }
    .sk-location-cta { padding: 56px 24px; }
    .sk-cta-title { font-size: 32px; line-height: 38px; }
    .sk-cta-form { padding: 32px 24px; }
    .sk-cta-fields { grid-template-columns: 1fr; }
    .sk-footer { padding: 64px 24px 24px; }
    .sk-footer-cols { grid-template-columns: 1fr; }
    .sk-footer-contact { grid-template-columns: 1fr; }
    .sk-footer-bottom { flex-direction: column; }
    .sk-whatsapp-float { width: 60px; height: 60px; }
    .sk-whatsapp-float img { width: 60px; height: 60px; }
}
