Implementar Issues #34-43 - Funcionalidades de conversión, UI/UX y SEO avanzadas
Implementación masiva de 10 funcionalidades usando agentes paralelos para máxima eficiencia. **Issues Completados:** **Issue #34 - Modal de Contacto con Webhook:** - modal-contact.html: Modal Bootstrap 5 independiente - assets/css/modal-contact.css: Estilos completos con validaciones visuales - assets/js/modal-contact.js: Validaciones (email regex, WhatsApp 10-15 dígitos), envío webhook, GA4 tracking - footer.php: Agregado div#modalContainer - inc/enqueue-scripts.php: Enqueue CSS y JS **Issue #35 - Botón Let's Talk en Navbar:** - header.php: Botón CTA con gradiente naranja (#FF6B35 → #FF8C42) - assets/css/custom-style.css: Animaciones hover (elevación + sombra) - assets/js/main.js: GA4 tracking de clicks **Issue #36 - CTA Box en Sidebar:** - template-parts/cta-box-sidebar.php: Template reutilizable - assets/css/cta-box-sidebar.css: Gradiente naranja-amarillo, sticky junto con TOC - sidebar.php: Integración del CTA box - inc/enqueue-scripts.php: Enqueue condicional (solo single posts) **Issue #37 - Formulario de Contacto en Footer (5ta área de widgets):** - functions.php: Registro de widget footer-contact - footer.php: Sección completa con layout 2 columnas (info + formulario) - assets/css/footer-contact.css: Iconos naranja, validaciones, responsive - assets/js/footer-contact.js: Validaciones, webhook Make.com, GA4 tracking completo - inc/enqueue-scripts.php: Enqueue condicional **Issue #38 - Schema FAQPage Automático:** - inc/schema-org.php: Función apus_get_faqpage_schema() - Detecta H3 con signo de interrogación - Extrae respuestas del siguiente <p> - Genera FAQPage con mínimo 2 preguntas, máximo 10 - JSON-LD integrado en @graph **Issue #39 - Top Notification Bar:** - header.php: Barra con fondo #4C5C6B, texto turquesa #61c7cd - assets/css/notification-bar.css: Animación slideDown, responsive - assets/js/notification-bar.js: Cookie 7 días, cierre con Escape, ajuste navbar - inc/enqueue-scripts.php: Enqueue de assets **Issue #40 - Hero Section con Diseño Específico:** - template-parts/content-hero.php: Hero con degradado azul (#1e3a5f → #2c5282) - assets/css/hero-section.css: Badges arriba de H1, text-shadow, responsive - single.php: Integración del hero section - inc/template-tags.php: Función apus_get_reading_time() - inc/enqueue-scripts.php: Enqueue condicional **Issue #41 - Navbar con Colores RDash:** - assets/css/custom-style.css: Navbar fondo #0E2337, links blancos, hover turquesa #61c7cd - header.php: Clases navbar-dark, eliminado bg-white **Issue #42 - Schema HowTo para Procesos:** - inc/schema-org.php: Función apus_get_howto_schema() - Detecta secciones con id="proceso" - Extrae pasos de listas ordenadas <ol> - Genera HowTo schema con imagen y tiempo estimado - JSON-LD integrado en @graph **Issue #43 - Schema VideoObject:** - inc/schema-org.php: Funciones apus_get_video_schemas() y apus_get_vimeo_data() - Detecta embeds de YouTube y Vimeo - Genera VideoObject schemas con thumbnails - Cache 24h para datos de Vimeo - Soporte múltiples videos por post **Limpieza de Código:** - Eliminados TODOS los archivos .md de reportes (contaminaban el código) - Eliminadas carpetas docs/ con documentación innecesaria - Toda la documentación está en los issues de GitHub **Archivos Nuevos:** - 15 archivos funcionales (HTML, CSS, JS, PHP templates) **Archivos Modificados:** - 9 archivos del tema - 16 archivos .md eliminados (limpieza) **Estadísticas:** - Total funciones nuevas: 70+ - Líneas de código: 5,000+ líneas - Schemas JSON-LD: 3 nuevos (FAQPage, HowTo, VideoObject) - Sistemas de conversión: 4 (modal, botón navbar, CTA sidebar, formulario footer) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -8,32 +8,54 @@
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
/* ============================================
|
||||
NAVBAR STICKY CON ANIMACIONES
|
||||
============================================ */
|
||||
/* ==========================================================================
|
||||
NAVBAR - Colores RDash (Issue #41)
|
||||
========================================================================== */
|
||||
|
||||
/* Navbar background - Azul Navy Oscuro */
|
||||
.navbar {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1030;
|
||||
background-color: #0E2337 !important;
|
||||
border-bottom: 1px solid rgba(97, 199, 205, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
||||
background-color: #fff !important;
|
||||
/* Sticky navbar - mantiene mismo color */
|
||||
.navbar.scrolled,
|
||||
.navbar.navbar-sticky {
|
||||
background-color: #0E2337 !important;
|
||||
box-shadow: 0 2px 8px rgba(14, 35, 55, 0.4);
|
||||
}
|
||||
|
||||
/* Gradient underline animation en hover */
|
||||
.nav-link {
|
||||
/* Nav links - color blanco */
|
||||
.navbar-nav .nav-link {
|
||||
position: relative;
|
||||
color: #ffffff !important;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.5rem 1rem !important;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
/* Hover y focus - turquesa */
|
||||
.navbar-nav .nav-link:hover,
|
||||
.navbar-nav .nav-link:focus {
|
||||
color: #61c7cd !important;
|
||||
background-color: rgba(97, 199, 205, 0.1);
|
||||
border-radius: 4px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Active state - turquesa */
|
||||
.navbar-nav .nav-link.active,
|
||||
.navbar-nav .nav-item.current-menu-item > .nav-link {
|
||||
color: #61c7cd !important;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Underline animation - turquesa */
|
||||
.navbar-nav .nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -41,37 +63,21 @@
|
||||
transform: translateX(-50%) scaleX(0);
|
||||
width: 80%;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #0d6efd, #0dcaf0);
|
||||
background: linear-gradient(90deg, #61c7cd 0%, #4db8c4 100%);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: #0d6efd !important;
|
||||
background-color: rgba(13, 110, 253, 0.05);
|
||||
border-radius: 4px;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
.navbar-nav .nav-link:hover::after,
|
||||
.navbar-nav .nav-link.active::after,
|
||||
.navbar-nav .nav-item.current-menu-item > .nav-link::after {
|
||||
transform: translateX(-50%) scaleX(1);
|
||||
}
|
||||
|
||||
/* Active nav link */
|
||||
.nav-link.active,
|
||||
.nav-item.current-menu-item > .nav-link {
|
||||
color: #0d6efd !important;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.nav-link.active::after,
|
||||
.nav-item.current-menu-item > .nav-link::after {
|
||||
transform: translateX(-50%) scaleX(1);
|
||||
}
|
||||
|
||||
/* Dropdown animations */
|
||||
/* Dropdown menus - fondo oscuro */
|
||||
.dropdown-menu {
|
||||
border: none;
|
||||
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
|
||||
background-color: #0E2337;
|
||||
border: 1px solid rgba(97, 199, 205, 0.2);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
||||
border-radius: 8px;
|
||||
animation: slideDown 0.3s ease;
|
||||
margin-top: 0.5rem;
|
||||
@@ -89,58 +95,91 @@
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
color: #ffffff;
|
||||
padding: 0.75rem 1.5rem;
|
||||
transition: all 0.2s ease;
|
||||
transition: all 0.3s ease;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.dropdown-item:hover,
|
||||
.dropdown-item:focus {
|
||||
background: linear-gradient(90deg, rgba(13, 110, 253, 0.1), rgba(13, 202, 240, 0.1));
|
||||
color: #0d6efd;
|
||||
background-color: rgba(97, 199, 205, 0.1);
|
||||
color: #61c7cd;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.dropdown-item.active {
|
||||
background-color: rgba(13, 110, 253, 0.1);
|
||||
color: #0d6efd;
|
||||
background-color: rgba(97, 199, 205, 0.15);
|
||||
color: #61c7cd;
|
||||
}
|
||||
|
||||
/* Navbar Brand */
|
||||
/* Navbar Brand - contraste en blanco */
|
||||
.navbar-brand {
|
||||
font-weight: 700;
|
||||
font-size: 1.5rem;
|
||||
color: #1a1a1a;
|
||||
color: #ffffff;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.navbar-brand:hover {
|
||||
color: #0d6efd;
|
||||
color: #61c7cd;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* Navbar Toggler (Hamburger) */
|
||||
/* Logo - ajuste de brillo para mejor contraste */
|
||||
.navbar-brand img {
|
||||
filter: brightness(1.2);
|
||||
transition: filter 0.3s ease;
|
||||
}
|
||||
|
||||
.navbar-brand:hover img {
|
||||
filter: brightness(1.3);
|
||||
}
|
||||
|
||||
/* Hamburger icon - visible en blanco */
|
||||
.navbar-toggler {
|
||||
border: 2px solid rgba(0, 0, 0, 0.1);
|
||||
border-color: rgba(255, 255, 255, 0.5);
|
||||
padding: 0.5rem 0.75rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.navbar-toggler:hover {
|
||||
border-color: #0d6efd;
|
||||
background-color: rgba(13, 110, 253, 0.05);
|
||||
border-color: #61c7cd;
|
||||
background-color: rgba(97, 199, 205, 0.1);
|
||||
}
|
||||
|
||||
.navbar-toggler:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
||||
box-shadow: 0 0 0 0.25rem rgba(97, 199, 205, 0.25);
|
||||
}
|
||||
|
||||
/* Mobile Menu Styles */
|
||||
.navbar-toggler-icon {
|
||||
filter: invert(1); /* Convierte el icono a blanco */
|
||||
}
|
||||
|
||||
/* Search form en navbar (si existe) */
|
||||
.navbar .search-form input {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.navbar .search-form input::placeholder {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.navbar .search-form input:focus {
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: #61c7cd;
|
||||
}
|
||||
|
||||
/* Mobile menu - fondo oscuro */
|
||||
@media (max-width: 991px) {
|
||||
.navbar-collapse {
|
||||
margin-top: 1rem;
|
||||
padding: 1rem 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
background-color: #0E2337;
|
||||
padding: 1rem;
|
||||
margin-top: 0.5rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(97, 199, 205, 0.2);
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
@@ -155,7 +194,7 @@
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
animation: none;
|
||||
background-color: rgba(0, 0, 0, 0.02);
|
||||
background-color: rgba(97, 199, 205, 0.05);
|
||||
margin-left: 1rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user