/* ============================================
   PROFESIONALES — THEME VIOLETA + PLASMA SHADER
   ============================================ */

body {
  --accent: #a855f7 !important;
  --accent-rgb: 168, 85, 247;
}

#plasmaCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.4) 100%);
    pointer-events: none;
}

.pro-hero h1, .pro-hero .sub, .pro-hero .cta-group,
.pro-section h2, .pro-section .section-label, .pro-section .section-desc {
    display: inline-block;
}
.pro-hero h1, .pro-hero .sub, .pro-hero .cta-group {
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.pro-hero h1 { padding-bottom: 4px; }
.pro-hero .sub { padding-top: 4px; padding-bottom: 8px; }
.pro-hero .cta-group { background: rgba(0,0,0,.7); padding: 16px 24px; }
.pro-section h2, .pro-section .section-label, .pro-section .section-desc {
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 12px;
}
.pro-section h2 { margin-bottom: 8px; }
.pro-section .section-desc { padding: 8px 16px; max-width: 640px; }

#faq .section-label, #faq h2, #faq .section-desc {
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 12px;
    display: inline-block;
}
#faq .section-desc {
    padding: 8px 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.header .btn-wa {
    background: linear-gradient(135deg, var(--accent), #7c3aed) !important;
    color: #000 !important;
}
.header .btn-wa:hover {
    box-shadow: 0 4px 20px rgba(var(--accent-rgb),.3) !important;
}
.header .logo-text span, .footer-logo-text span {
    color: var(--accent) !important;
}

.fluid-item:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
.nav-cursor-item:hover {
    color: var(--accent) !important;
}
.nav-cursor-bg {
    background: rgba(var(--accent-rgb),.12) !important;
}
.footer a:hover {
    color: var(--accent) !important;
}
.footer-social a:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
::-webkit-scrollbar-thumb {
    background: var(--accent) !important;
}

.shader-toggle {
    border-color: rgba(var(--accent-rgb),.25) !important;
    color: var(--accent) !important;
}
.shader-toggle.on {
    background: rgba(var(--accent-rgb),.15) !important;
    border-color: var(--accent) !important;
}
.shader-toggle.hidden {
    opacity: .35;
}
.shader-toggle.hidden i {
    transform: rotate(180deg);
}

.pro-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.pro-hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.pro-hero h1 span {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(var(--accent-rgb),.3), 0 2px 20px rgba(0,0,0,.6);
}

.pro-hero .sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.pro-hero .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pro-hero .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.pro-hero .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb),.3);
}

.pro-hero .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.pro-hero .cta-secondary:hover {
    border-color: var(--accent);
    color: #fff;
    background: rgba(var(--accent-rgb),.08);
}

.pro-section {
    padding: 80px 0;
}

.pro-section:nth-child(odd) {
    background: rgba(0,0,0,.7);
}

.pro-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pro-section .section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.pro-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.pro-section .section-desc {
    color: rgba(255,255,255,.55);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pro-card {
    background: rgba(0,0,0,.7);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.pro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb),.25);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.pro-card.popular {
    border-color: var(--accent);
    background: rgba(0,0,0,.7);
    box-shadow: 0 0 30px rgba(var(--accent-rgb),.1);
    position: relative;
}

.pro-card.popular::before {
    content: 'Más elegido';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0a0a0a;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pro-icon {
    margin-bottom: 8px;
}
.pro-icon .plan-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.pro-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pro-price {
    margin: 12px 0 4px;
}

.pro-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
}

.pro-period {
    font-size: .9rem;
    color: rgba(255,255,255,.4);
}

.pro-billed {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 12px;
}

.pro-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.pro-features {
    list-style: none;
    text-align: left;
    flex: 1;
    margin-bottom: 20px;
}

.pro-features li {
    padding: 6px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pro-btn {
    display: block;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    margin-top: auto;
}

.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb),.3);
}

.faq-compact {
    max-width: 680px;
    margin: 0 auto;
}

.faq-compact details {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
}

.faq-compact summary {
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-compact summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform .2s;
}

.faq-compact details[open] summary::after {
    transform: rotate(45deg);
}

.faq-compact details p {
    padding-top: 12px;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

.pro-cta {
    padding: 80px 20px;
    text-align: center;
}

.pro-cta-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 32px;
    background: rgba(0,0,0,.7);
    border: 1px solid rgba(var(--accent-rgb),.15);
    border-radius: 24px;
    backdrop-filter: blur(8px);
}

.pro-cta-card h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.pro-cta-card .cta-desc {
    color: rgba(255,255,255,.55);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pro-cta-card .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.pro-cta-card .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb),.3);
}

.pro-cta-card .cta-note {
    margin-top: 12px;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}

.domain-toggle {
    border-color: rgb(255 255 254) !important;
    color: rgb(255 255 255) !important;
}
.domain-toggle:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
.domain-toggle.on {
    background: rgba(var(--accent-rgb),.12) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

@media(max-width:700px){
    .pro-hero{padding:100px 16px 60px}
    .pro-grid{grid-template-columns:1fr}
    .pro-section{padding:50px 0}
    .pro-cta-card{padding:32px 20px}
}
