
/* GLOBAL STYLES */
:root {
    --primary-color: #2966ff;
    --background-dark: #0a0e27;
}
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--background-dark);
    color: #fff;
}
a { text-decoration: none; }

/* Styles from header_workspace.html */
.header-workspace-loggedout * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .header-workspace-loggedout {
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 4px 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .header-workspace-loggedout .header-container {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-workspace-loggedout .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-workspace-loggedout .btn-login {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.8);
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .header-workspace-loggedout .btn-login:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .header-workspace-loggedout .btn-register {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #2966ff 0%, #1a4fd8 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(41, 102, 255, 0.3);
    }

    .header-workspace-loggedout .btn-register:hover {
        box-shadow: 0 4px 15px rgba(41, 102, 255, 0.4);
    }



    /* Responsive */
    @media (max-width: 768px) {
        .header-workspace-loggedout {
            padding: 3px 12px;
        }

        .header-workspace-loggedout .header-container {
            justify-content: flex-end;
        }
    }

    @media (max-width: 576px) {
        .header-workspace-loggedout .header-actions {
            gap: 8px;
        }

        .header-workspace-loggedout .btn-login span:last-child,
        .header-workspace-loggedout .btn-register span:last-child {
            display: none;
        }
    }
/* Styles from header_capturaleads.html */
.header-capturaleads * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .header-capturaleads {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        padding: 4px 20px;
        /* MATCHING WORKSPACE HEADERS */
    }

    .header-container {
        max-width: 1600px;
        /* MATCHING WORKSPACE HEADERS */
        margin: 0 auto;
        /* padding removed from here, moved to header wrapper for consistency */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-icon {
        font-size: 18px;
        /* Reduced from 20px - Matches workspace icon scale */
        filter: drop-shadow(0 0 10px rgba(41, 102, 255, 0.5));
    }

    .logo-text {
        font-size: 16px;
        /* Reduced from 18px - Matches workspace text scale */
        font-weight: 800;
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 8px;
        min-width: 200px;
        flex-direction: column;
        gap: 4px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* Arrow icon for dropdown trigger */
    .dropdown-trigger::after {
        content: '▾';
        font-size: 10px;
        margin-left: 5px;
        opacity: 0.7;
    }

    .nav-menu {
        display: flex;
        gap: 5px;
        align-items: center;
        list-style: none;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        /* Increased legibility */
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 8px;
        transition: all 0.2s ease;
        display: flex;
        /* Centers content */
        align-items: center;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .btn-community {
        background: rgba(37, 211, 102, 0.1);
        border: 1px solid rgba(37, 211, 102, 0.2);
        color: #25D366 !important;
        font-weight: 600;
        gap: 8px;
    }

    .btn-community:hover {
        background: rgba(37, 211, 102, 0.2) !important;
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
        border-color: rgba(37, 211, 102, 0.4);
    }

    .mobile-menu-toggle {
        display: none;
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .mobile-menu-toggle {
            display: block;
        }

        .nav-menu {
            display: none;
            position: absolute;
            top: 70px;
            left: 20px;
            right: 20px;
            background: rgba(16, 20, 50, 0.98);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 24px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex-direction: column;
            gap: 8px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
        }

        .nav-menu.active {
            display: flex;
        }

        .dropdown-menu {
            display: flex;
            /* Always show on mobile or use JS to toggle */
            position: static;
            background: transparent;
            border: none;
            box-shadow: none;
            opacity: 1;
            transform: none;
            padding-left: 20px;
            padding-top: 0;
            padding-bottom: 0;
            border-left: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            min-width: auto;
        }

        .dropdown:hover .dropdown-menu {
            /* Remove hover effect on mobile */
        }

        .dropdown-trigger {
            width: 100%;
            justify-content: space-between;
        }

        .dropdown-trigger::after {
            content: '';
            /* Remove arrow on mobile if expanded */
        }
    }

    @media (max-width: 480px) {
        .header-container {
            padding: 12px 15px;
        }

        .nav-menu {
            left: 10px;
            right: 10px;
        }
    }
/* Styles from hero_section.html */
.hero-capturaleads * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-capturaleads {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #0a0e27;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 120px 40px 80px;
        position: relative;
        z-index: 10;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    /* Badge */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(41, 102, 255, 0.1);
        border: 1px solid rgba(41, 102, 255, 0.3);
        padding: 10px 20px;
        border-radius: 50px;
        margin-bottom: 30px;
        animation: fadeInDown 0.8s ease;
    }

    .badge-icon {
        font-size: 18px;
    }

    .badge-text {
        color: #2966ff;
        font-size: 14px;
        font-weight: 600;
    }

    /* Title */
    .hero-title {
        font-size: 64px;
        font-weight: 900;
        line-height: 1.1;
        color: white;
        margin-bottom: 25px;
        animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .gradient-text {
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }

    /* Description */
    .hero-description {
        font-size: 20px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    /* Stats */
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-bottom: 40px;
        animation: fadeInUp 0.8s ease 0.6s backwards;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 800;
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* CTA Buttons */
    .hero-cta {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
        animation: fadeInUp 0.8s ease 0.8s backwards;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #2966ff 0%, #1a4fd8 100%);
        color: white;
        padding: 18px 35px;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(41, 102, 255, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(41, 102, 255, 0.5);
    }

    .btn-icon {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .btn-primary:hover .btn-icon {
        transform: translateX(5px);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        padding: 18px 35px;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }

    /* Trust Badges */
    .hero-trust {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease 1s backwards;
    }

    .trust-text {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 500;
    }

    /* Animated Background */
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bg-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, rgba(41, 102, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    }

    .bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0.5;
    }

    .floating-element {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        animation: float 20s infinite ease-in-out;
    }

    .el-1 {
        width: 300px;
        height: 300px;
        background: rgba(41, 102, 255, 0.2);
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .el-2 {
        width: 200px;
        height: 200px;
        background: rgba(0, 212, 255, 0.2);
        top: 60%;
        right: 15%;
        animation-delay: -7s;
    }

    .el-3 {
        width: 250px;
        height: 250px;
        background: rgba(41, 102, 255, 0.15);
        bottom: 10%;
        left: 50%;
        animation-delay: -14s;
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(30px, -30px) scale(1.1);
        }

        66% {
            transform: translate(-20px, 20px) scale(0.9);
        }
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-title {
            font-size: 48px;
        }

        .hero-stats {
            gap: 30px;
        }

        .stat-number {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .hero-container {
            padding: 100px 20px 60px;
        }

        .hero-title {
            font-size: 40px;
        }

        .hero-description {
            font-size: 18px;
        }

        .hero-stats {
            flex-wrap: wrap;
            gap: 25px;
        }

        .hero-cta {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-primary,
        .btn-secondary {
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .stat-number {
            font-size: 24px;
        }

        .stat-label {
            font-size: 11px;
        }

        .btn-primary,
        .btn-secondary {
            padding: 16px 30px;
            font-size: 16px;
        }

        .hero-trust {
            flex-direction: column;
            gap: 10px;
        }
    }
/* Styles from caracteristicas.html */
.caracteristicas-resumen-premium * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .caracteristicas-resumen-premium {
        position: relative;
        padding: 100px 20px;
        background: #0a0e27;
        overflow: hidden;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(41, 102, 255, 0.1);
        border: 1px solid rgba(41, 102, 255, 0.3);
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        color: #2966ff;
        font-size: 14px;
        font-weight: 600;
    }

    .badge-icon {
        font-size: 16px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 900;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .gradient-text {
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-card {
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 40px 25px;
        text-align: center;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(41, 102, 255, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

    .feature-card.highlighted {
        border-color: rgba(41, 102, 255, 0.4);
        background: rgba(41, 102, 255, 0.1);
    }

    .card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(41, 102, 255, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover .card-glow {
        opacity: 1;
    }

    .feature-icon {
        font-size: 56px;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 20px rgba(41, 102, 255, 0.3));
    }

    .feature-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.5;
    }

    .cta-section {
        text-align: center;
    }

    .btn-gradient {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #2966ff 0%, #1a4fd8 100%);
        color: white;
        padding: 16px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(41, 102, 255, 0.4);
    }

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(41, 102, 255, 0.5);
    }

    .btn-arrow {
        transition: transform 0.3s ease;
    }

    .btn-gradient:hover .btn-arrow {
        transform: translateX(5px);
    }

    .section-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bg-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(41, 102, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .section-title {
            font-size: 40px;
        }
    }

    @media (max-width: 768px) {
        .caracteristicas-resumen-premium {
            padding: 70px 15px;
        }

        .section-title {
            font-size: 32px;
        }

        .features-grid {
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .features-grid {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 28px;
        }

        .feature-card {
            padding: 30px 20px;
        }
    }
/* Styles from contacto.html */
.contacto-resumen-premium * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .contacto-resumen-premium {
        position: relative;
        padding: 100px 20px;
        background: #0a0e27;
        overflow: hidden;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .section-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(41, 102, 255, 0.1);
        border: 1px solid rgba(41, 102, 255, 0.3);
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        color: #2966ff;
        font-size: 14px;
        font-weight: 600;
    }

    .badge-icon {
        font-size: 16px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 900;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .gradient-text {
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-card {
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 50px 40px;
        overflow: hidden;
    }

    .card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(41, 102, 255, 0.15) 0%, transparent 70%);
        opacity: 0.5;
        pointer-events: none;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .info-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(41, 102, 255, 0.3);
    }

    .info-icon {
        font-size: 36px;
        filter: drop-shadow(0 0 15px rgba(41, 102, 255, 0.3));
    }

    .info-details h4 {
        font-size: 16px;
        font-weight: 700;
        color: white;
        margin-bottom: 5px;
    }

    .info-details p,
    .info-details a {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .info-details a:hover {
        color: #2966ff;
    }

    .cta-section {
        text-align: center;
    }

    .btn-gradient {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #2966ff 0%, #1a4fd8 100%);
        color: white;
        padding: 16px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(41, 102, 255, 0.4);
    }

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(41, 102, 255, 0.5);
    }

    .btn-arrow {
        transition: transform 0.3s ease;
    }

    .btn-gradient:hover .btn-arrow {
        transform: translateX(5px);
    }

    .section-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bg-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(41, 102, 255, 0.15) 0%, transparent 60%);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contacto-resumen-premium {
            padding: 70px 15px;
        }

        .section-title {
            font-size: 36px;
        }

        .contact-card {
            padding: 40px 25px;
        }

        .info-item {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 32px;
        }

        .contact-card {
            padding: 30px 20px;
        }
    }
/* Styles from footer.html */
/* Reset local */
    .footer-capturaleads * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-capturaleads {
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        color: white;
        padding: 60px 20px 30px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 10;
    }

    .footer-capturaleads .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-capturaleads .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-capturaleads h3 {
        font-size: 16px;
        margin-bottom: 25px;
        font-weight: 700;
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.5px;
    }

    .footer-capturaleads .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-capturaleads .footer-logo-icon {
        font-size: 24px;
        filter: drop-shadow(0 0 15px rgba(41, 102, 255, 0.5));
    }

    .footer-capturaleads .footer-logo-text {
        font-size: 20px;
        font-weight: 800;
        background: linear-gradient(135deg, #2966ff 0%, #00d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .footer-capturaleads .footer-description {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 25px;
        max-width: 350px;
    }

    .footer-capturaleads .social-links {
        display: flex;
        gap: 12px;
    }

    .footer-capturaleads .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .footer-capturaleads .social-link:hover {
        background: rgba(41, 102, 255, 0.2);
        border-color: rgba(41, 102, 255, 0.5);
        transform: translateY(-2px);
    }

    .footer-capturaleads .footer-links {
        list-style: none;
    }

    .footer-capturaleads .footer-links li {
        margin-bottom: 12px;
    }

    .footer-capturaleads .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-capturaleads .footer-links a:hover {
        color: #2966ff;
        transform: translateX(4px);
    }

    .footer-capturaleads .contact-info {
        list-style: none;
    }

    .footer-capturaleads .contact-info li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
    }

    .footer-capturaleads .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        text-align: center;
    }

    .footer-capturaleads .footer-bottom p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-capturaleads .footer-bottom a {
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        transition: color 0.3s ease;
        margin: 0 8px;
    }

    .footer-capturaleads .footer-bottom a:hover {
        color: #2966ff;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .footer-capturaleads .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 576px) {
        .footer-capturaleads .footer-grid {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .footer-capturaleads {
            padding: 40px 20px 20px;
        }
    }