/**
 * PC Web Chile - Servicios | assets/css/style.css
 * Tema contable profesional — Dark Mode + Bootstrap 5
 * @version 1.0.0
 */

/* ========== VARIABLES ========== */
:root {
    --primary: #1E40AF;
    --primary-light: #3B82F6;
    --primary-dark: #1E3A8A;
    --primary-glow: rgba(30, 64, 175, .35);
    --bg: #09090B;
    --bg-card: #18181B;
    --bg-elevated: #27272A;
    --bg-accent: #1C1C1F;
    --text: #F4F4F5;
    --text-muted: #A1A1AA;
    --text-faint: #71717A;
    --border: rgba(255, 255, 255, .08);
    --border-hover: rgba(59, 130, 246, .4);
    --grad-primary: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    --grad-hero: linear-gradient(135deg, #000 0%, #0F0F20 50%, #0A1628 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .6);
    --shadow-blue: 0 8px 32px rgba(30, 64, 175, .3);
    --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: 'Inter', 'Segoe UI', 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 ========== */
.pcwc-text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, #60A5FA 50%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcwc-text-gradient-light {
    background: linear-gradient(135deg, #BFDBFE 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

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

.pcwc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(30, 64, 175, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    padding: 6px 16px;
    border-radius: var(--r-full)
}

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

.pcwc-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -.02em
}

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

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

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

.pcwc-btn-primary:hover,
.pcwc-btn-primary:focus {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, .45)
}

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

.pcwc-btn-outline:hover {
    background: rgba(59, 130, 246, .1);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px)
}

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

/* ========== TOPBAR ========== */
.pcwc-topbar {
    background: rgba(9, 9, 11, .95);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: .82rem;
    backdrop-filter: blur(10px)
}

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

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

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

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

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

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

/* ========== NAVBAR ========== */
.pcwc-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#pcwc-navbar.pcwc-navbar--scrolled {
    margin-top: 0px;
    padding-top: 16px;
}

.pcwc-navbar.pcwc-navbar--scrolled {
    background: rgba(9, 9, 11, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5)
}

.pcwc-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-blue);
    flex-shrink: 0
}

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

.pcwc-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.2
}

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

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

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

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

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

.dropdown-menu.dropdown-menu-dark {
    background: var(--bg-card);
    border: 1px solid var(--border);
    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(59, 130, 246, .1);
    color: var(--primary-light)
}

.pcwc-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)
}

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

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

@media(max-width:991.98px) {
    .pcwc-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 var(--border);
        overflow-y: auto;
        transition: right var(--ease);
        z-index: 1001
    }

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

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

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

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

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

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

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

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

.pcwc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .92) 0%, rgba(9, 9, 11, .88) 40%, rgba(10, 22, 40, .8) 100%)
}

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

.pcwc-hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(30, 64, 175, .12);
    border: 1px solid rgba(59, 130, 246, .3);
    padding: 8px 18px;
    border-radius: var(--r-full);
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px)
}

.pcwc-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff
}

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

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

.pcwc-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1
}

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

.pcwc-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    align-self: center
}

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

.pcwc-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(30, 64, 175, .4), transparent 70%);
    border-radius: 50%;
    filter: blur(40px)
}

.pcwc-hero-card {
    position: absolute;
    background: rgba(24, 24, 27, .9);
    border: 1px solid var(--border);
    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
}

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

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

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: .15;
    animation: particleFloat linear infinite
}

.particle--1 {
    width: 4px;
    height: 4px;
    left: 10%;
    top: 20%;
    animation-duration: 8s
}

.particle--2 {
    width: 6px;
    height: 6px;
    left: 80%;
    top: 60%;
    animation-duration: 12s;
    animation-delay: 2s
}

.particle--3 {
    width: 3px;
    height: 3px;
    left: 50%;
    top: 80%;
    animation-duration: 10s;
    animation-delay: 4s
}

.particle--4 {
    width: 5px;
    height: 5px;
    left: 30%;
    top: 40%;
    animation-duration: 9s;
    animation-delay: 1s
}

.particle--5 {
    width: 4px;
    height: 4px;
    left: 70%;
    top: 15%;
    animation-duration: 11s;
    animation-delay: 3s
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0
    }

    10% {
        opacity: .15
    }

    90% {
        opacity: .15
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0
    }
}

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

.pcwc-scroll-dot {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 99px;
    position: relative
}

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

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

    100% {
        top: 18px;
        opacity: 0
    }
}

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

.pcwc-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
}

.pcwc-service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(30, 64, 175, .15)
}

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

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

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

.pcwc-service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 11, .8) 0%, transparent 60%)
}

.pcwc-img-fallback {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%)
}

.pcwc-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-blue);
    z-index: 3;
    border: 2px solid var(--bg-card);
    transition: transform var(--ease)
}

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

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

.pcwc-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -.01em
}

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

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

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

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

.pcwc-service-btn:hover {
    color: #fff
}

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

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

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

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

.pcwc-process-bg-decor {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(30, 64, 175, .08) 0%, transparent 70%);
    pointer-events: none
}

.pcwc-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: .3;
    z-index: 0;
    pointer-events: none
}

.pcwc-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)
}

.pcwc-process-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.pcwc-process-number {
    position: absolute;
    top: -16px;
    left: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(30, 64, 175, .15);
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none
}

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

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

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

.pcwc-process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

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

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

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

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

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

.pcwc-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)
}

.pcwc-benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.pcwc-benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(30, 64, 175, .12);
    border: 1px solid rgba(59, 130, 246, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    transition: all var(--ease)
}

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

.pcwc-benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

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

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

.pcwc-metrics-inner {
    background: linear-gradient(135deg, #0A1628 0%, #0D1F3C 50%, #0A1628 100%);
    border-top: 1px solid rgba(30, 64, 175, .3);
    border-bottom: 1px solid rgba(30, 64, 175, .3);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden
}

.pcwc-metrics-inner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(30, 64, 175, .2) 0%, transparent 70%);
    pointer-events: none
}

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

.pcwc-metric-card:hover {
    background: rgba(30, 64, 175, .1);
    border-color: rgba(59, 130, 246, .3);
    transform: translateY(-4px)
}

.pcwc-metric-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 64, 175, .2);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin: 0 auto;
    transition: all var(--ease)
}

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

.pcwc-metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 16px 0 8px
}

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

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

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

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

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

.pcwc-testimonial-stars .bi-star-fill {
    color: #FBBF24;
    font-size: .95rem
}

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

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

.pcwc-testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text)
}

.pcwc-testimonial-role {
    font-size: .82rem;
    color: var(--text-faint)
}

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

.pcwc-carousel-btn {
    width: 48px !important;
    height: 48px !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !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
}

.pcwc-carousel-btn--prev {
    left: -24px !important
}

.pcwc-carousel-btn--next {
    right: -24px !important
}

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

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

.pcwc-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
}

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

.pcwc-trust-badges {
    padding: 32px 0 0;
    margin-top: 48px;
    border-top: 1px solid var(--border)
}

.pcwc-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 var(--border);
    border-radius: var(--r-full);
    transition: all var(--fast)
}

.pcwc-trust-badge:hover {
    border-color: var(--border-hover);
    color: var(--text)
}

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

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

.pcwc-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, .97) 0%, rgba(10, 22, 40, .95) 100%)
}

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

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

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

.pcwc-cta-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(30, 64, 175, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--primary-light);
    flex-shrink: 0
}

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

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

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

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

.pcwc-contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg)
}

.pcwc-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em
}

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

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

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

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

.pcwc-form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
    background: var(--bg-card)
}

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

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

select.pcwc-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='%2371717A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

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

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

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

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

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

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

.pcwc-footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text)
}

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

.pcwc-social-btn {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: all var(--fast)
}

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

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

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

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

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

.pcwc-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(30, 64, 175, .12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--primary-light);
    flex-shrink: 0
}

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

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

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

.pcwc-footer-divider {
    border-color: var(--border);
    opacity: 1
}

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

.pcwc-footer-link-sm {
    font-size: .83rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: color var(--fast)
}

.pcwc-footer-link-sm:hover {
    color: var(--primary-light)
}

/* ========== SCROLL TOP ========== */
.pcwc-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-blue);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--ease);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.pcwc-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30, 64, 175, .5)
}

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

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

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

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

.pcwc-content h2,
.pcwc-content h3,
.pcwc-content h4 {
    color: var(--text);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem
}

.pcwc-content p {
    margin-bottom: 1.25rem
}

.pcwc-content a {
    color: var(--primary-light)
}

.pcwc-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    background: var(--bg-card);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin: 1.5rem 0;
    font-style: italic
}

/* ========== RESPONSIVE ========== */
@media(max-width:991.98px) {
    :root {
        --section-py: 72px
    }

    .pcwc-hero-title {
        font-size: 2.4rem
    }

    .pcwc-testimonial-card {
        padding: 36px 28px
    }
}

@media(max-width:767.98px) {
    :root {
        --section-py: 56px
    }

    .pcwc-hero-title {
        font-size: 2rem
    }

    .pcwc-hero-stat-divider {
        display: none
    }

    .pcwc-testimonial-card {
        padding: 28px 20px
    }

    .pcwc-testimonial-text {
        font-size: .95rem
    }

    .pcwc-contact-form-card {
        padding: 28px 20px
    }

    .pcwc-carousel-btn--prev {
        left: -8px !important
    }

    .pcwc-carousel-btn--next {
        right: -8px !important
    }

    .pcwc-metric-number {
        font-size: 2.4rem
    }

    .pcwc-footer {
        padding-top: 60px
    }

    .pcwc-scroll-top {
        bottom: 20px;
        right: 20px
    }
}

@media(max-width:575.98px) {
    :root {
        --section-py: 48px
    }

    .pcwc-hero-title {
        font-size: 1.75rem
    }

    .pcwc-btn-lg {
        padding: 14px 24px;
        font-size: .95rem
    }
}

/* ========== ACCESIBILIDAD ========== */
:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px
}

.pcwc-skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 10000;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-weight: 600;
    text-decoration: none;
    transition: top .2s
}

.pcwc-skip-link:focus {
    top: 16px
}

.admin-bar .pcwc-navbar {
    top: 32px
}

@media(max-width:782px) {
    .admin-bar .pcwc-navbar {
        top: 46px
    }
}