        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        /* Variables de color - Tema Jaguar */
        :root {
            --primary-color: #0f172a;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --highlight-color: #e94560;
            --success-color: #00d4aa;
            --warning-color: #ff6b35;
            --light-accent: #533483;
            --text-light: #f5f5f5;
            --text-muted: #8892b0;
            --background-dark: #0a0e1a;
            --card-bg: rgba(255, 255, 255, 0.05);
            --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            --gradient-accent: linear-gradient(135deg, #533483 0%, #e94560 100%);
            --gradient-success: linear-gradient(135deg, #00d4aa 0%, #02a085 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.2);
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--background-dark);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo .jaguar-icon {
            color: var(--background-dark);
            margin: 0 0.2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--highlight-color);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--highlight-color), var(--light-accent));
            color: white !important;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--gradient-primary);
            color: var(--text-light);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            background:
                url("Imagenes/figura-esquina-izq.png") no-repeat 16% 100%,
                url("Imagenes/figura-esquina-der.png") no-repeat 84% 10%;

            background-size: 350px auto, 350px auto;
            /* ajustá tamaños */
            z-index: 1;
            opacity: 0.3;
            /* opcional, por si querés más sutil */
        }


        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(233, 69, 96, 0.1);
            border: 1px solid var(--highlight-color);
            color: var(--highlight-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .hero h1 .highlight {
            color: var(--highlight-color);
        }

        .hero p {
            font-size: 1.2rem;
            color: #b0b0b0;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--text-light);
            border: none;
            /* box-shadow: 0 4px 10px rgba(15, 34, 157, 0.3);*/
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--highlight-color);
        }

        .btn:hover {
            transform: translateY(-3px);
            background: var(--gradient-primary);
            border-color: var(--highlight-color);
            color: #fff;
        }

        /* Plataformas Section */
        .platforms {
            padding: 5rem 2rem;
            background: var(--primary-color);
            position: relative;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            opacity: 0.8;
        }

        .platforms-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .platform-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(233, 69, 96, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
            /* Asegura que esté detrás del contenido */
        }

        .platform-card:hover::before {
            opacity: 1;
        }

        .platform-card:hover {
            transform: translateY(-10px);
            border-color: var(--highlight-color);
            /* box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);*/

        }



        .platform-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .platform-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .platform-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .platform-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .platform-features li::before {
            content: '✓';
            background: var(--highlight-color);
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.8rem;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .platform-link {
            color: var(--highlight-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
            /* Asegura que el enlace esté por encima del ::before */
        }

        .platform-link:hover {
            color: var(--highlight-color);
        }

        /* Soluciones Section */
        .solutions {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .solution-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .solution-tab {
            padding: 12px 24px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: #b0b0b0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
        }

        .solution-tab.active {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-color: var(--primary-color);
        }

        .solution-tab:hover:not(.active) {
            background: rgba(233, 69, 96, 0.05);
            border-color: rgba(233, 69, 96, 1);
        }

        .solution-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .solution-content.active {
            display: block;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .solution-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            border-color: var(--highlight-color);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);

        }

        .solution-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 600;
        }

        .solution-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .solution-card .btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Caso de éxito Section */
        .case-study {
            padding: 5rem 2rem;
            background: var(--primary-color);
        }

        .case-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .case-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .case-image img {
            width: 100%;
            display: block;
        }

        .case-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: var(--text-light);
        }

        .case-content p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .case-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .case-stat h3 {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .case-stat p {
            color: #b0b0b0;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Precios Section */
        .pricing {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .currency-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
            gap: 1rem;
        }

        .currency-toggle span {
            font-weight: 600;
            color: #b0b0b0;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.2);
            transition: .4s;
            border-radius: 34px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.toggle-slider {
            background-color: var(--primary-color);
        }

        input:checked+.toggle-slider:before {
            transform: translateX(26px);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border: 2px solid var(--highlight-color);
            background: rgba(233, 69, 96, 0.1);
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--highlight-color);
            /* antes var(--primary-color) */
            color: var(--text-light);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .pricing-card .price {
            font-size: 3rem;

            font-weight: 800;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            flex-wrap: wrap;


            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        /* Precio en Bs o $ (el que esté activo) */
        .pricing-card .price .bs-price,
        .pricing-card .price .usd-price {
            color: var(--highlight-color);
            /* Rojo llamativo */
            font-weight: 800;
        }

        /* Texto del periodo (ej. / mes, / 6 meses) */
        /* Ajuste del texto del periodo (ej: /mes, /6 meses) */
        .pricing-card .price .period {
            font-size: 1rem;
            /* tamaño normal */
            font-weight: 600;
            /* un poco más delgado que el precio */
            color: var(--text-muted);
            /* gris suave */
            margin-left: 0.3rem;
            /* pequeño espacio del número */
        }




        .pricing-card .period {
            color: #b0b0b0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .pricing-features li::before {
            content: '✓';
            background: var(--highlight-color);

            color: var(--text-light);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 0.7rem;
            flex-shrink: 0;
        }


        .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
        }

        .price .currency {
            color: var(--highlight-color);
            /* rojo */
            font-weight: 700;
        }

        .price .amount {
            color: var(--text-light);
            /* blanco fuerte */
            font-weight: 800;
        }

        .price .period {
            font-size: 1rem;
            font-weight: normal;
            color: var(--text-muted);
            /* gris */
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            background:
                url("Imagenes/figura-esquina-izq.png") no-repeat 0% 100%,
                url("Imagenes/figura-esquina-der.png") no-repeat 100% 0%;

            background-size: 250px auto, 250px auto;
            /* ajustá tamaño */
            z-index: 1;
            opacity: 0.3;
            /* igual que el hero, para que no opaque el texto */
        }


        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            margin-bottom: 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }

        .cta-section .btn {
            background: var(--highlight-color);
            color: var(--text-light);
            position: relative;
            z-index: 2;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 2rem;
            background: var(--primary-color);
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
        }

        .faq-stats {
            background: var(--gradient-primary);
            border-radius: 20px;
            padding: 2rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }

        .faq-stats-item {
            background: var(--highlight-color);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .faq-stats-item .number {
            font-size: 3rem;
            color: white;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .faq-stats-item .label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 800;
            color: var(--text-light);
        }

        .faq-item {
            background: rgba(12, 9, 109, 0.05);
            border: 1px solid rgba(233, 69, 96, 1);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(233, 69, 96, 0.418);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #b0b0b0;
            line-height: 1.6;
            display: none;
        }

        .faq-answer.show {
            display: block;
        }

        /* Footer */
        .footer {
            background: var(--background-dark);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 3rem;
        }

        .footer-section h3 {
            color: var(--highlight-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: #b0b0b0;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--highlight-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-logo .jaguar-icon {
            color: var(--primary-color);
        }

        .newsletter {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 25px;
            background: #222;
            color: white;
        }

        .newsletter button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter button:hover {
            background: var(--highlight-color);
        }



        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #666;
        }

        /* Scroll reveal animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .case-container,
            .faq-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--primary-color);
                backdrop-filter: blur(10px);
                padding: 2rem;
                flex-direction: column;
                gap: 1rem;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }

            .nav-menu.active {
                display: flex;
                transform: translateY(0);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .platforms-grid,
            .solution-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .platform-card,
            .solution-card,
            .pricing-card {
                padding: 1.5rem;
            }
        }

        /* Estilos para el logo */
        .logo-img {
            height: 60px;
            /* Ajusta según necesidad */
            width: auto;
            /* Mantiene proporción */
            vertical-align: middle;
            /* Alinea con el texto */
            margin-right: 10px;
            /* Espacio entre logo y texto */
        }

        /* Opcional: Oculta el ícono span si usas logo */
        .jaguar-icon {
            display: none;
        }


        /* === Precios con moneda y monto separados por color === */
        .price .currency {
            color: var(--highlight-color);
            /* rojo coral de tu paleta */
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .price .amount {
            color: var(--text-light);
            /* verde éxito de tu paleta */
            font-weight: 800;
        }

        .price .bs-price,
        .price .usd-price {
            display: inline;
            /* El script se encarga de ocultar/mostrar según moneda */
        }

        /* Opcional: look consistente en todas las cards */
        .pricing-card .price {
            font-size: 1.6rem;
            display: flex;
            align-items: baseline;
            gap: .35rem;
        }

        /* === Redes sociales (íconos blancos circulares) === */
        .social-icons {
            display: flex;

            gap: 1.2rem;
            margin-top: 1rem;
            text-align: center;
        }

        .social-icons a {
            color: #fff;
            /* íconos blancos */
            font-size: 1.5rem;
            /* tamaño del ícono */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--card-bg);
            transition: all 0.25s ease;
        }

        /* Hover con color de acento de tu paleta */
        .social-icons a:hover {
            background: var(--highlight-color);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(233, 69, 96, 0.4);
            color: #fff;
            /* 🔥 mantiene el ícono visible al resaltar */
        }


        /* === Logo dentro de plataforma === */
        .platform-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem auto;
            border-radius: 80%;
            background: var(--card-bg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .platform-logo {
            width: 90%;
            /* controla el tamaño del logo dentro del círculo */
            height: auto;
            object-fit: contain;
            /* evita distorsión */
            filter: brightness(1.1) contrast(1.1);
        }

        .platform-card:hover .platform-icon {
            background: var(--highlight-color);
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
        }