/**
 * PC Web Chile - Belleza & Estética | assets/css/style.css
 * Tema premium belleza y spa — Dark Mode Elegante, Rosa + Dorado
 * @version 1.0.0
 */

/* ========== VARIABLES ========== */
:root {
    /* Rosa / Magenta premium */
    --primary: #C2185B;
    --primary-light: #E91E8C;
    --primary-dark: #880E4F;
    --primary-glow: rgba(194, 24, 91, .35);
    /* Dorado acento */
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-glow: rgba(212, 175, 55, .25);
    /* Fondos elegantes oscuros */
    --bg: #0A0507;
    --bg-card: #160C11;
    --bg-elevated: #211018;
    --bg-accent: #130A0F;
    /* Textos */
    --text: #FAF0F4;
    --text-muted: #C9A8B8;
    --text-faint: #8C6479;
    /* Bordes */
    --border: rgba(255, 255, 255, .07);
    --border-hover: rgba(194, 24, 91, .4);
    /* Gradientes */
    --grad-primary: linear-gradient(135deg, #880E4F 0%, #C2185B 100%);
    --grad-gold: linear-gradient(135deg, #B8960C 0%, #D4AF37 50%, #F0D060 100%);
    --grad-hero: linear-gradient(135deg, #000 0%, #0A0307 50%, #140510 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .7);
    --shadow-pink: 0 8px 32px rgba(194, 24, 91, .3);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, .2);
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 9999px;
    --ease: .3s ease;
    --fast: .15s ease;
    --section-py: 100px;
    --nav-h: 72px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Nunito', 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--bg) }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px }

/* ========== UTILS ========== */
.pcwcb-text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, #F06292 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcwcb-text-gradient-light {
    background: linear-gradient(135deg, #F8BBD0 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcwcb-section {
    padding: var(--section-py) 0
}

.pcwcb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(194, 24, 91, .1);
    border: 1px solid rgba(233, 30, 140, .25);
    padding: 6px 16px;
    border-radius: var(--r-full)
}

.pcwcb-section-label--light {
    color: #F8BBD0;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2)
}

.pcwcb-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -.02em;
    font-family: 'Playfair Display', 'Georgia', serif
}

.pcwcb-section-title--light {
    color: #fff
}

.pcwcb-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto
}

/* ========== BUTTONS ========== */
.pcwcb-btn-primary {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    border-radius: var(--r-full);
    padding: 12px 28px;
    font-weight: 700;
    font-size: .9rem;
    transition: all var(--ease);
    box-shadow: var(--shadow-pink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .01em
}

.pcwcb-btn-primary:hover,
.pcwcb-btn-primary:focus {
    background: linear-gradient(135deg, #C2185B 0%, #E91E8C 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(194, 24, 91, .5)
}

.pcwcb-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: var(--r-full);
    padding: 12px 28px;
    font-weight: 700;
    font-size: .9rem;
    transition: all var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.pcwcb-btn-outline:hover {
    background: rgba(212, 175, 55, .1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px)
}

.pcwcb-btn-lg {
    padding: 16px 36px;
    font-size: 1rem
}

/* ========== TOPBAR ========== */
.pcwcb-topbar {
    background: rgba(10, 5, 7, .97);
    border-bottom: 1px solid rgba(212, 175, 55, .15);
    padding: 8px 0;
    font-size: .82rem;
    backdrop-filter: blur(10px)
}

.pcwcb-topbar-item {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.pcwcb-topbar-item i {
    color: var(--primary-light);
    font-size: .75rem
}

.pcwcb-topbar-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--fast)
}

.pcwcb-topbar-item a:hover {
    color: var(--primary-light)
}

.pcwcb-social-link {
    color: var(--text-faint);
    font-size: .95rem;
    transition: color var(--fast)
}

.pcwcb-social-link:hover {
    color: var(--primary-light)
}

/* ========== NAVBAR ========== */
.pcwcb-navbar {
    background: transparent;
    padding: 16px 0;
    margin-top: 32px;
    transition: all var(--ease);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent
}

nav#pcwcb-navbar.pcwcb-navbar--scrolled {
    margin-top: 0
}

.pcwcb-navbar.pcwcb-navbar--scrolled {
    background: rgba(10, 5, 7, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom-color: rgba(212, 175, 55, .12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .6)
}

.pcwcb-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: var(--shadow-pink);
    flex-shrink: 0
}

.pcwcb-logo-icon--sm {
    width: 32px;
    height: 32px;
    font-size: .9rem;
    border-radius: var(--r-sm)
}

.pcwcb-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.2;
    font-family: 'Playfair Display', serif
}

.pcwcb-brand-tagline {
    font-size: .7rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.pcwcb-navbar .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 16px !important;
    border-radius: var(--r-sm);
    transition: all var(--fast);
    position: relative
}

.pcwcb-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--gold));
    border-radius: 99px;
    transition: width var(--ease)
}

.pcwcb-navbar .nav-link:hover,
.pcwcb-navbar .nav-item.active .nav-link {
    color: var(--text) !important
}

.pcwcb-navbar .nav-link:hover::after,
.pcwcb-navbar .nav-item.active .nav-link::after {
    width: 20px
}

.dropdown-menu.dropdown-menu-dark {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .12);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    min-width: 200px
}

.dropdown-menu.dropdown-menu-dark .dropdown-item {
    color: var(--text-muted);
    border-radius: var(--r-sm);
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 500;
    transition: all var(--fast)
}

.dropdown-menu.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(194, 24, 91, .1);
    color: var(--primary-light)
}

.pcwcb-toggler {
    background: none;
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: var(--r-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: border-color var(--fast)
}

.pcwcb-toggler:hover {
    border-color: var(--primary-light)
}

.pcwcb-toggler-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
    transition: all var(--ease)
}

@media(max-width:991.98px) {
    .pcwcb-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-card);
        padding: 80px 24px 40px;
        border-left: 1px solid rgba(212, 175, 55, .1);
        overflow-y: auto;
        transition: right var(--ease);
        z-index: 1001
    }

    .pcwcb-navbar .navbar-collapse.show {
        right: 0
    }

    .pcwcb-navbar .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--r-md);
        margin-bottom: 4px
    }

    .pcwcb-nav-cta {
        margin-top: 20px
    }

    .pcwcb-nav-cta .btn {
        width: 100%;
        justify-content: center
    }
}

.pcwcb-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999;
    backdrop-filter: blur(4px)
}

.pcwcb-nav-overlay.active {
    display: block
}

/* ========== HERO ========== */
.pcwcb-hero {
    position: relative;
    height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--grad-hero)
}

.pcwcb-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.pcwcb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .93) 0%, rgba(10, 3, 7, .88) 40%, rgba(20, 5, 15, .82) 100%)
}

.pcwcb-hero-glow-left {
    position: absolute;
    top: 20%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(194, 24, 91, .2) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px)
}

.pcwcb-hero-glow-right {
    position: absolute;
    bottom: 10%;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .12) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px)
}

.pcwcb-hero-container {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 60px
}

.pcwcb-hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    padding: 8px 18px;
    border-radius: var(--r-full);
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px)
}

.pcwcb-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    font-family: 'Playfair Display', 'Georgia', serif
}

.pcwcb-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px
}

.pcwcb-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.pcwcb-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    font-family: 'Playfair Display', serif
}

.pcwcb-stat-label {
    font-size: .78rem;
    color: var(--text-faint);
    font-weight: 500
}

.pcwcb-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, .2);
    align-self: center
}

.pcwcb-hero-image-wrapper {
    position: relative;
    height: 480px
}

.pcwcb-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(194, 24, 91, .35), transparent 70%);
    border-radius: 50%;
    filter: blur(40px)
}

.pcwcb-hero-circle-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px solid rgba(194, 24, 91, .2);
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite
}

.pcwcb-hero-inner-circle {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 50%
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg) }
    to { transform: translate(-50%, -50%) rotate(360deg) }
}

.pcwcb-hero-card {
    position: absolute;
    background: rgba(22, 12, 17, .92);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--r-md);
    padding: 12px 20px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: floatCard 3s ease-in-out infinite
}

.pcwcb-hero-card--top {
    top: 40px;
    right: 20px
}

.pcwcb-hero-card--bottom {
    bottom: 80px;
    left: 20px;
    animation-delay: 1.5s
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-10px) }
}

.pcwcb-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

/* Pétalos / partículas rosas */
.particle {
    position: absolute;
    border-radius: 50% 20% 50% 20%;
    background: var(--primary-light);
    opacity: .12;
    animation: particleFloat linear infinite
}

.particle--1 { width: 8px; height: 6px; left: 10%; top: 20%; animation-duration: 9s }
.particle--2 { width: 10px; height: 8px; left: 80%; top: 60%; animation-duration: 13s; animation-delay: 2s; background: var(--gold-light); opacity: .08 }
.particle--3 { width: 5px; height: 5px; left: 50%; top: 80%; animation-duration: 11s; animation-delay: 4s }
.particle--4 { width: 7px; height: 5px; left: 30%; top: 40%; animation-duration: 10s; animation-delay: 1s }
.particle--5 { width: 6px; height: 6px; left: 70%; top: 15%; animation-duration: 12s; animation-delay: 3s; background: var(--gold); opacity: .1 }
.particle--6 { width: 4px; height: 6px; left: 20%; top: 70%; animation-duration: 8s; animation-delay: 5s }
.particle--7 { width: 9px; height: 7px; left: 90%; top: 35%; animation-duration: 14s; animation-delay: 1.5s }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0 }
    10% { opacity: .12 }
    90% { opacity: .12 }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0 }
}

.pcwcb-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5
}

.pcwcb-scroll-dot {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(212, 175, 55, .4);
    border-radius: 99px;
    position: relative
}

.pcwcb-scroll-dot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 99px;
    animation: scrollDot 2s ease-in-out infinite
}

@keyframes scrollDot {
    0% { top: 5px; opacity: 1 }
    100% { top: 18px; opacity: 0 }
}

/* ========== SERVICES ========== */
.pcwcb-services {
    background: var(--bg)
}

.pcwcb-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--ease);
    display: flex;
    flex-direction: column
}

.pcwcb-service-card:hover {
    border-color: rgba(194, 24, 91, .35);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(194, 24, 91, .12)
}

.pcwcb-service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center
}

.pcwcb-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease)
}

.pcwcb-service-card:hover .pcwcb-service-img {
    transform: scale(1.08)
}

.pcwcb-service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 5, 7, .85) 0%, transparent 60%)
}

.pcwcb-img-fallback {
    background: linear-gradient(135deg, #211018 0%, #160C11 100%)
}

.pcwcb-service-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: var(--shadow-pink);
    z-index: 3;
    border: 2px solid var(--bg-card);
    transition: transform var(--ease)
}

.pcwcb-service-card:hover .pcwcb-service-icon-badge {
    transform: scale(1.1) rotate(-5deg)
}

.pcwcb-service-body {
    padding: 36px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.pcwcb-service-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.pcwcb-service-meta-item {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-faint);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: var(--r-full)
}

.pcwcb-service-meta-item--price {
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, .2);
    background: rgba(212, 175, 55, .06)
}

.pcwcb-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -.01em;
    font-family: 'Playfair Display', serif
}

.pcwcb-service-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px
}

.pcwcb-service-benefits li {
    font-size: .85rem;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px
}

.pcwcb-service-benefits .bi-check-circle-fill {
    color: var(--primary-light);
    font-size: .9rem;
    flex-shrink: 0
}

.pcwcb-service-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-light);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    margin-top: auto;
    transition: all var(--fast);
    padding: 10px 0;
    border-top: 1px solid rgba(194, 24, 91, .15)
}

.pcwcb-service-btn:hover {
    color: var(--gold-light)
}

.pcwcb-service-btn .bi-arrow-right {
    transition: transform var(--fast)
}

.pcwcb-service-btn:hover .bi-arrow-right {
    transform: translateX(4px)
}

.pcwcb-services-cta-text {
    color: var(--text-muted);
    font-size: .95rem
}

/* ========== PROCESS ========== */
.pcwcb-process {
    background: var(--bg-accent);
    position: relative;
    overflow: hidden
}

.pcwcb-process-bg-decor {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(194, 24, 91, .07) 0%, transparent 70%);
    pointer-events: none
}

.pcwcb-process-connector {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(8.333% + 60px);
    right: calc(8.333% + 60px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 12px, transparent 12px, transparent 20px);
    opacity: .25;
    z-index: 0;
    pointer-events: none
}

.pcwcb-process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--ease)
}

.pcwcb-process-card:hover {
    border-color: rgba(194, 24, 91, .3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.pcwcb-process-number {
    position: absolute;
    top: -16px;
    left: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(194, 24, 91, .12);
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none;
    font-family: 'Playfair Display', serif
}

.pcwcb-process-img-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto
}

.pcwcb-process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-md)
}

.pcwcb-process-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    box-shadow: var(--shadow-pink)
}

.pcwcb-process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif
}

.pcwcb-process-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0
}

/* ========== BENEFITS ========== */
.pcwcb-benefits {
    background: var(--bg)
}

.pcwcb-check-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: .95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border)
}

.pcwcb-check-list li:last-child {
    border-bottom: none
}

.pcwcb-check-list .bi-check-circle-fill {
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0
}

.pcwcb-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--ease)
}

.pcwcb-benefit-card:hover {
    border-color: rgba(194, 24, 91, .3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.pcwcb-benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(194, 24, 91, .1);
    border: 1px solid rgba(233, 30, 140, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    transition: all var(--ease)
}

.pcwcb-benefit-card:hover .pcwcb-benefit-icon {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-pink)
}

.pcwcb-benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif
}

.pcwcb-benefit-text {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0
}

/* ========== METRICS ========== */
.pcwcb-metrics {
    padding: 0
}

.pcwcb-metrics-inner {
    background: linear-gradient(135deg, #09030A 0%, #160411 50%, #09030A 100%);
    border-top: 1px solid rgba(194, 24, 91, .2);
    border-bottom: 1px solid rgba(194, 24, 91, .2);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden
}

.pcwcb-metrics-inner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(194, 24, 91, .15) 0%, transparent 70%);
    pointer-events: none
}

.pcwcb-metrics-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 70%);
    pointer-events: none
}

.pcwcb-metric-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(194, 24, 91, .15);
    border-radius: var(--r-lg);
    transition: all var(--ease);
    backdrop-filter: blur(10px)
}

.pcwcb-metric-card:hover {
    background: rgba(194, 24, 91, .08);
    border-color: rgba(194, 24, 91, .3);
    transform: translateY(-4px)
}

.pcwcb-metric-icon {
    width: 56px;
    height: 56px;
    background: rgba(194, 24, 91, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin: 0 auto;
    transition: all var(--ease)
}

.pcwcb-metric-card:hover .pcwcb-metric-icon {
    background: var(--grad-primary);
    color: #fff
}

.pcwcb-metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 16px 0 8px;
    font-family: 'Playfair Display', serif
}

.pcwcb-metric-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ========== TESTIMONIALS ========== */
.pcwcb-testimonials {
    background: var(--bg-accent)
}

.pcwcb-testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .1);
    border-radius: var(--r-xl);
    padding: 48px 52px;
    text-align: center;
    position: relative;
    margin: 12px
}

.pcwcb-testimonial-quote {
    font-size: 5rem;
    color: var(--primary-light);
    opacity: .15;
    line-height: 1;
    font-family: 'Playfair Display', Georgia, serif
}

.pcwcb-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px
}

.pcwcb-testimonial-stars .bi-star-fill {
    color: var(--gold);
    font-size: .95rem
}

.pcwcb-testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin: 0 auto 8px;
    max-width: 680px
}

.pcwcb-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0
}

.pcwcb-testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
    font-family: 'Playfair Display', serif
}

.pcwcb-testimonial-role {
    font-size: .82rem;
    color: var(--primary-light)
}

.pcwcb-testimonial-author {
    justify-content: center
}

.pcwcb-carousel-btn {
    width: 48px !important;
    height: 48px !important;
    background: var(--bg-card) !important;
    border: 1px solid rgba(194, 24, 91, .2) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text) !important;
    transition: all var(--fast) !important;
    opacity: 1 !important
}

.pcwcb-carousel-btn--prev { left: -24px !important }
.pcwcb-carousel-btn--next { right: -24px !important }

.pcwcb-carousel-btn:hover {
    background: var(--grad-primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important
}

.pcwcb-carousel-indicators { bottom: -48px !important }

.pcwcb-carousel-indicators [data-bs-target] {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: var(--text-faint) !important;
    border: none !important;
    opacity: 1 !important;
    transition: all var(--ease) !important
}

.pcwcb-carousel-indicators .active {
    background: var(--primary-light) !important;
    width: 24px !important;
    border-radius: 99px !important
}

.pcwcb-trust-badges {
    padding: 32px 0 0;
    margin-top: 48px;
    border-top: 1px solid rgba(212, 175, 55, .1)
}

.pcwcb-trust-badge {
    display: flex;
    align-items: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .12);
    border-radius: var(--r-full);
    transition: all var(--fast)
}

.pcwcb-trust-badge:hover {
    border-color: rgba(194, 24, 91, .3);
    color: var(--text)
}

/* ========== CTA ========== */
.pcwcb-cta {
    position: relative;
    overflow: hidden;
    padding: var(--section-py) 0
}

.pcwcb-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-accent)
}

.pcwcb-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 5, 7, .97) 0%, rgba(20, 5, 15, .95) 100%)
}

.pcwcb-cta-decor-left {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(194, 24, 91, .15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px)
}

.pcwcb-cta-decor-right {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px)
}

.pcwcb-cta-container {
    position: relative;
    z-index: 2
}

.pcwcb-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #fff;
    font-family: 'Playfair Display', serif
}

.pcwcb-cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7
}

.pcwcb-cta-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(194, 24, 91, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--primary-light);
    flex-shrink: 0
}

.pcwcb-cta-feature span {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7)
}

.pcwcb-cta-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--r-full);
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: all var(--ease)
}

.pcwcb-cta-contact-btn:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink)
}

.pcwcb-cta-contact-btn--wa:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3)
}

.pcwcb-contact-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .12);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden
}

.pcwcb-contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light))
}

.pcwcb-form-ornament {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: .08
}

.pcwcb-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    font-family: 'Playfair Display', serif
}

.pcwcb-form-subtitle {
    font-size: .88rem;
    color: var(--text-faint)
}

.pcwcb-form-label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: .02em;
    text-transform: uppercase
}

.pcwcb-form-control {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid rgba(194, 24, 91, .15);
    border-radius: var(--r-md);
    color: var(--text);
    padding: 12px 16px;
    font-size: .9rem;
    font-family: 'Nunito', inherit;
    transition: border-color var(--fast), box-shadow var(--fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none
}

.pcwcb-form-control::placeholder {
    color: var(--text-faint)
}

.pcwcb-form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(194, 24, 91, .12);
    background: var(--bg-card)
}

.pcwcb-form-control.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12)
}

textarea.pcwcb-form-control {
    resize: vertical;
    min-height: 100px
}

select.pcwcb-form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238C6479' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

select.pcwcb-form-control option {
    background: var(--bg-card);
    color: var(--text)
}

.pcwcb-form-disclaimer {
    font-size: .78rem;
    color: var(--text-faint);
    text-align: center;
    margin: 0
}

/* ========== FOOTER ========== */
.pcwcb-footer {
    background: #050205;
    position: relative;
    padding-top: 80px
}

.pcwcb-footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    line-height: 0
}

.pcwcb-footer-wave svg {
    display: block;
    width: 100%;
    height: 100%
}

.pcwcb-footer-content {
    padding-bottom: 60px
}

.pcwcb-footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Playfair Display', serif
}

.pcwcb-footer-desc {
    font-size: .88rem;
    color: var(--text-faint);
    line-height: 1.7
}

.pcwcb-social-btn {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid rgba(194, 24, 91, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: all var(--fast)
}

.pcwcb-social-btn:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink)
}

.pcwcb-footer-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.pcwcb-footer-links li {
    margin-bottom: 10px
}

.pcwcb-footer-links a {
    font-size: .88rem;
    color: var(--text-faint);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--fast)
}

.pcwcb-footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px
}

.pcwcb-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(194, 24, 91, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--primary-light);
    flex-shrink: 0
}

.pcwcb-footer-contact strong {
    font-size: .82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
    margin-bottom: 2px
}

.pcwcb-footer-contact span,
.pcwcb-footer-contact a {
    font-size: .88rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: color var(--fast)
}

.pcwcb-footer-contact a:hover {
    color: var(--primary-light)
}

.pcwcb-footer-divider {
    border-color: rgba(194, 24, 91, .12);
    opacity: 1
}

.pcwcb-copyright {
    font-size: .83rem;
    color: var(--text-faint)
}

/* ========== SCROLL TOP ========== */
.pcwcb-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--ease);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center
}

.pcwcb-scroll-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.pcwcb-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(194, 24, 91, .5)
}

/* ========== INNER PAGES ========== */
.pcwcb-page-wrap {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: var(--section-py);
    min-height: 70vh
}

.pcwcb-inner-hero {
    background: linear-gradient(135deg, #050205 0%, var(--bg-accent) 100%);
    border-bottom: 1px solid rgba(194, 24, 91, .15);
    padding: calc(var(--nav-h) + 40px) 0 60px;
    margin-bottom: 60px
}

.pcwcb-inner-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--text);
    font-family: 'Playfair Display', serif
}

.pcwcb-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem
}

/* ========== RESPONSIVE ========== */
@media(max-width:767.98px) {
    :root { --section-py: 70px }
    .pcwcb-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem) }
    .pcwcb-testimonial-card { padding: 32px 24px }
    .pcwcb-contact-form-card { padding: 28px 20px }
    .pcwcb-carousel-btn--prev { left: -12px !important }
    .pcwcb-carousel-btn--next { right: -12px !important }
}
