/* ── HERO ─────────────────────────────────────────── */
.ct-hero {
    background: url('/img/bannerIndex.webp') center/cover no-repeat;
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 80, 0.45);
}

.ct-hero-inner { position: relative; z-index: 1; }

.ct-hero h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.ct-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.ct-hero-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}
.ct-deco-left  { left: 40px; }
.ct-deco-right { right: 40px; }

/* ── MAIN GRID ────────────────────────────────────── */
.ct-main {
    background: #fff;
    padding: 56px 40px;
}

.ct-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* ── IZQUIERDA ────────────────────────────────────── */
.ct-left h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 8px;
}

.ct-left p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ct-quick-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #F8FAFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    text-decoration: none;
    color: #1e1e2e;
    font-size: 14px;
    font-weight: 500;
    transition: background 180ms, border-color 180ms, transform 180ms;
}

.ct-quick-item:hover {
    background: #EFF6FF;
    border-color: #1D4ED8;
    transform: translateX(4px);
    color: #1D4ED8;
}

.ct-quick-item svg { margin-left: auto; color: #94a3b8; }
.ct-quick-item:hover svg { color: #1D4ED8; }

.ct-quick-emoji { font-size: 18px; }

/* ── DERECHA — WSP BOX ────────────────────────────── */
.ct-wsp-box {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(29,78,216,0.08);
}

.ct-wsp-header {
    background: #25D366;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.ct-wsp-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.ct-wsp-body {
    padding: 28px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ct-wsp-icon {
    width: 64px;
    height: 64px;
    background: rgba(37,211,102,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #25D366;
}

.ct-wsp-body h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 8px;
}

.ct-wsp-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 20px;
}

.ct-wsp-btn {
    display: block;
    background: #25D366;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 200ms, transform 200ms;
}

.ct-wsp-btn:hover {
    background: #1ebe58;
    transform: scale(1.03);
}

/* Redes en el box */
.ct-redes-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E2E8F0;
}

.ct-redes-footer span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ct-redes-icons {
    display: flex;
    gap: 8px;
}

.ct-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 200ms, opacity 200ms;
}

.ct-social-icon:hover { transform: scale(1.1); opacity: 0.9; }

.ct-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ct-fb { background: #1877F2; }
.ct-tt { background: #111; }

/* ── INFO CARDS ───────────────────────────────────── */
.ct-info-section {
    background: #F8FAFF;
    border-top: 1px solid #E2E8F0;
    padding: 40px;
}

.ct-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ct-info-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 200ms;
}

.ct-info-card:hover {
    box-shadow: 0 4px 20px rgba(29,78,216,0.1);
}

.ct-info-icon {
    width: 44px;
    height: 44px;
    background: #EFF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D4ED8;
    flex-shrink: 0;
}

.ct-info-card h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 4px;
}

.ct-info-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 820px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-info-grid { grid-template-columns: 1fr; }
    .ct-hero h1 { font-size: 36px; }
    .ct-main { padding: 40px 20px; }
    .ct-info-section { padding: 32px 20px; }
    .ct-hero { padding: 48px 20px; }
    .ct-hero-deco { display: none; }
}
