.elementor-1782 .elementor-element.elementor-element-67e0b652{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-1782 .elementor-element.elementor-element-399408e8{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}@media(min-width:768px){.elementor-1782 .elementor-element.elementor-element-78b4e434{width:100%;}.elementor-1782 .elementor-element.elementor-element-150e2b8{width:100%;}}/* Start custom CSS */:root {
            /* Paleta de colores */
            --color-verde-trokolo: #8cc63f;
            --color-verde-oscuro: #6fa82b;
            --color-naranja: #f7941d;
            --color-rosa: #ec407a;
            --color-azul: #29b6f6;
            --color-morado: #9c27b0; /* Nuevo color para la sección IA */
            --color-blanco: #ffffff;
            --color-texto: #4a4a4a;
            --font-titulo: 'Fredoka', sans-serif;
            --font-cuerpo: 'Nunito', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-cuerpo);
            color: var(--color-texto);
            background-color: #fdfdfd;
        }

        h1, h2, h3 {
            font-family: var(--font-titulo);
            margin-top: 0;
        }

        /* Utilidades generales */
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center { text-align: center; }
        
        /* Botones estilo Trokoló */
        .btn-trokolo {
            display: inline-block;
            background-color: var(--color-rosa);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 0 #c2185b;
            border: none;
            cursor: pointer;
        }

        .btn-trokolo:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #c2185b;
        }

        /* Botón específico para IA */
        .btn-ai {
            background-color: var(--color-morado);
            box-shadow: 0 4px 0 #7b1fa2;
            width: 100%;
            margin-top: 10px;
        }
        .btn-ai:hover {
            box-shadow: 0 6px 0 #7b1fa2;
        }
        .btn-ai:disabled {
            background-color: #ccc;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        /* =========================================
           BLOQUE 1: HERO (ENCABEZADO)
           ========================================= */
        .hero-section {
            background-color: var(--color-verde-trokolo);
            padding: 80px 0 140px 0;
            position: relative;
            color: white;
            overflow: hidden;
        }

        .decor-star {
            position: absolute;
            color: rgba(255,255,255,0.3);
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
        }
        .star-1 { top: 20%; left: 10%; font-size: 3rem; }
        .star-2 { top: 60%; right: 15%; font-size: 2rem; animation-delay: 2s; }
        .cloud-1 { 
            position: absolute; 
            top: 10%; right: -5%; 
            width: 150px; height: 80px; 
            background: white; 
            border-radius: 50px; 
            opacity: 0.2; 
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(10deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: #FFFFFF;
        }

        /* =========================================
           BLOQUE 2: QUIÉNES SOMOS
           ========================================= */
        .services-section {
            padding: 60px 0;
            background-color: white;
        }

        .section-title {
            color: var(--color-verde-trokolo);
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 3px solid transparent;
            transition: 0.3s;
        }

        .service-card:hover {
            border-color: var(--color-naranja);
            transform: translateY(-5px);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.8rem;
            color: white;
        }

        .card-1 .icon-box { background-color: var(--color-naranja); }
        .card-2 .icon-box { background-color: var(--color-azul); }
        .card-3 .icon-box { background-color: var(--color-rosa); }
        .card-4 .icon-box { background-color: var(--color-verde-trokolo); }

        .service-card h3 {
            color: var(--color-texto);
            font-size: 1.3rem;
        }

        /* =========================================
           BLOQUE 3: POR QUÉ NOSOTROS
           ========================================= */
        .benefits-section {
            padding: 80px 0;
            background-color: #ffffff; /* Cambiado a blanco puro */
            position: relative;
        }

        .benefits-grid {
            display: grid;
            /* Cambiado a 2 columnas explícitas */
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .check-icon {
            color: var(--color-verde-trokolo);
            font-size: 1.5rem;
            background: white;
            padding: 10px;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* =========================================
           BLOQUE GEMINI AI (NUEVO)
           ========================================= */
        .gemini-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
            position: relative;
            overflow: hidden;
        }

        .gemini-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
            justify-content: center;
        }

        .gemini-form-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            border: 2px solid var(--color-morado);
        }

        .gemini-result-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            display: none; /* Se muestra con JS */
        }
        
        .gemini-result-card.active {
            display: block;
            animation: popIn 0.5s ease;
        }

        @keyframes popIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--color-texto);
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-family: var(--font-cuerpo);
            font-size: 1rem;
            box-sizing: border-box;
            transition: 0.3s;
        }

        .form-input:focus {
            border-color: var(--color-morado);
            outline: none;
        }

        .ai-badge {
            display: inline-block;
            background: var(--color-morado);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .loading-spinner {
            display: none;
            text-align: center;
            margin-top: 20px;
        }

        .loading-spinner i {
            color: var(--color-morado);
            font-size: 2rem;
            animation: spin 1s linear infinite;
        }

        @keyframes spin { 100% { transform: rotate(360deg); } }

        /* Estilos Markdown resultado */
        .markdown-content h3 { color: var(--color-morado); margin-bottom: 10px; }
        .markdown-content ul { padding-left: 20px; }
        .markdown-content li { margin-bottom: 8px; }

        /* =========================================
           BLOQUE 4: PERFILES Y VALORAMOS
           ========================================= */
        .profiles-section {
            padding: 80px 0;
            background-image: radial-gradient(var(--color-verde-trokolo) 1px, transparent 1px);
            background-size: 20px 20px;
            background-color: #f0f8e9;
        }

        .split-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .info-box {
            background: white;
            padding: 40px;
            border-radius: 30px;
            flex: 1;
            min-width: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .info-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 10px;
        }
        .box-profiles::before { background: var(--color-azul); }
        .box-values::before { background: var(--color-naranja); }

        .info-box h3 {
            color: var(--color-verde-trokolo);
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .info-box ul {
            list-style: none;
            padding: 0;
        }

        .info-box ul li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .info-box ul li::before {
            content: '•';
            color: var(--color-rosa);
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }

        /* =========================================
           BLOQUE 5: CTA FINAL
           ========================================= */
        .cta-section {
            padding: 80px 0;
            text-align: center;
            background: white;
        }

        .cta-card {
            background: var(--color-verde-trokolo); /* Es Verde Trokoló */
            color: white;
            padding: 60px;
            border-radius: 40px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(140, 198, 63, 0.3); /* Sombra verde suave */
        }

        .cta-card h2 { color: white; margin-bottom: 20px; }
        
        .circle-decor {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }
        .c-1 { width: 200px; height: 200px; top: -50px; left: -50px; }
        .c-2 { width: 100px; height: 100px; bottom: 20px; right: 20px; }

        /* =========================================
           MEDIA QUERIES (RESPONSIVE)
           ========================================= */
        @media (max-width: 768px) {
            
            /* Contenedor principal: Reducir padding horizontal */
            .container {
                padding: 0 15px;
            }

            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.1rem; }
            .section-title { font-size: 2rem; margin-bottom: 30px; }
            
            .split-container { 
                flex-direction: column;
                gap: 20px; /* Reducir gap entre tarjetas */
            }

            /* OPTIMIZACIÓN CLAVE: Tarjetas Perfiles y Valoramos */
            .info-box { 
                padding: 30px; /* Reducir padding interno */
                border-radius: 20px; /* Hacer los bordes ligeramente más pequeños */
                min-width: 100%; /* Asegurar que ocupe todo el ancho disponible */
            }
            
            .cta-card { padding: 40px 20px; border-radius: 30px; }
            
            /* Ajustes Responsive para Grids */
            .services-grid { gap: 20px; }
            .benefits-grid { grid-template-columns: 1fr; } /* Vuelve a 1 columna en móvil */
            .gemini-container { flex-direction: column; gap: 20px; }
            .gemini-form-card, .gemini-result-card { width: 100%; max-width: 100%; }
            
            .loading-spinner p { font-size: 0.9rem; }
        }/* End custom CSS */