/* =========================================
   ESTILOS ADICIONALES PARA POS INTELIGENTE
   ========================================= */

/* Hero Section POS - Siempre visible */
.page-content .hero-section-pos {
    background: var(--gradient);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Forzar visibilidad inmediata del hero */
.page-content.fade-in .hero-section-pos,
.page-content .hero-section-pos {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.hero-section-pos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-section-pos .hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-section-pos h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.pos-main-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite alternate;
}

/* Section Header con icono */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-header h2 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(124, 179, 66, 0.05);
    transform: translateX(5px);
}

.benefit-check {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

/* Differentiators List */
.differentiators-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.differentiator-item:hover {
    background: rgba(124, 179, 66, 0.05);
    transform: translateX(5px);
}

.differentiator-bullet {
    color: var(--primary-green);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.differentiator-text {
    flex: 1;
}

/* Conclusion Section */
.conclusion-section {
    background: var(--dark-green);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.conclusion-section .section-header {
    justify-content: center;
    flex-direction: column;
}

.conclusion-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: textFocusIn 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.conclusion-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease forwards 0.2s both;
}

.cta-conclusion {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-green);
    margin-top: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section-pos .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-section-pos h1 {
        font-size: 1.8rem;
    }
    
    .pos-main-icon {
        font-size: 4rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .conclusion-section {
        padding: 2rem 1.5rem;
    }
}

/* Corrección para eliminar el efecto cuadrado del icono */
.pos-main-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
}

/* Asegurarse de que el contenedor del icono también esté limpio */
.hero-visual {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Si el problema persiste, usar esta versión más específica */
.hero-section-pos .pos-main-icon {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Corrección para eliminar la rotación del icono */
.pos-main-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float-no-rotation 3s ease-in-out infinite;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
}

/* Nueva animación sin rotación */
@keyframes float-no-rotation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Alternativa con animación más sutil */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Si prefieres la animación más sutil, cambia esta línea: */
.pos-main-icon-gentle {
    animation: gentle-float 4s ease-in-out infinite;
}

/* =========================================
   ANIMACIONES PARA ICONO POS
   ========================================= */

/* 1. ANIMACIONES SUTILES (Recomendadas para uso profesional) */

/*@keyframes pulse {
            0% { transform: scale(1); opacity: 0.2; }
            100% { transform: scale(1.05); opacity: 0.4; }
        }*/

/* Flotación suave vertical */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Pulsación suave de escala */
@keyframes soft-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Respiración con opacidad */
@keyframes breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Flotación con escala combinada */
@keyframes float-scale {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
        opacity: 0.4; 
    }
}

/* 2. ANIMACIONES DINÁMICAS (Más llamativas) */

/* Oscilación horizontal suave */
@keyframes gentle-sway {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
}

/* Rotación muy sutil */
@keyframes subtle-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

/* Efecto de latido */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.05); }
    28% { transform: scale(1); }
    42% { transform: scale(1.03); }
    70% { transform: scale(1); }
}

/* 3. ANIMACIONES COMPLEJAS (Más elaboradas) */

/* Órbita suave */
@keyframes orbit {
    0% { transform: rotate(0deg) translateX(5px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(5px) rotate(-360deg); }
}

/* Flotación con rotación mínima */
@keyframes float-minimal-rotate {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-5px) rotate(1deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

/* Efecto de pendulo */
@keyframes pendulum {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* 4. ANIMACIONES DE HOVER (Para interactividad) */

/* Crecimiento al hover */
@keyframes hover-grow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Rotación completa al hover */
@keyframes hover-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rebote al hover */
@keyframes hover-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =========================================
   CLASES PARA APLICAR LAS ANIMACIONES
   ========================================= */
/*.pos-icon-pulse {
    animation: pulse 2s ease-in-out infinite alternate;
}*/
   

/* Animaciones sutiles - Uso continuo */
.pos-icon-gentle-float {
    animation: gentle-float 4s ease-in-out infinite;
}

.pos-icon-soft-pulse {
    animation: soft-pulse 3s ease-in-out infinite;
}

.pos-icon-breathe {
    animation: breathe 4s ease-in-out infinite;
}

.pos-icon-float-scale {
    animation: float-scale 5s ease-in-out infinite;
}

/* Animaciones dinámicas */
.pos-icon-sway {
    animation: gentle-sway 6s ease-in-out infinite;
}

.pos-icon-heartbeat {
    animation: heartbeat 2s ease-in-out infinite;
}

.pos-icon-orbit {
    animation: orbit 20s linear infinite;
}

/* Combinaciones */
.pos-icon-float-rotate {
    animation: float-minimal-rotate 8s ease-in-out infinite;
}

.pos-icon-pendulum {
    animation: pendulum 4s ease-in-out infinite;
}

/* Animaciones de hover */
.pos-icon-hover-grow:hover {
    animation: hover-grow 0.3s ease forwards;
}

.pos-icon-hover-spin:hover {
    animation: hover-spin 0.6s ease;
}

.pos-icon-hover-bounce:hover {
    animation: hover-bounce 0.6s ease;
}

/* =========================================
   RECOMENDACIONES DE USO
   ========================================= */

/* PARA CONTEXTO PROFESIONAL/CORPORATIVO: */
/* .pos-icon-gentle-float o .pos-icon-soft-pulse */

/* PARA LLAMAR ATENCIÓN SIN SER MOLESTO: */
/* .pos-icon-float-scale o .pos-icon-breathe */

/* PARA SITIOS MÁS CREATIVOS: */
/* .pos-icon-heartbeat o .pos-icon-sway */

/* COMBINACIÓN RECOMENDADA: */
.pos-main-icon-professional {
    animation: gentle-float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.pos-main-icon-professional:hover {
    animation: hover-grow 0.3s ease forwards, gentle-float 4s ease-in-out infinite;
}


/* =========================================
   TARJETAS COMPACTAS PARA CARACTERÍSTICAS
   ========================================= */

/* Modificar el grid para mostrar más tarjetas por fila */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Diseño compacto para las tarjetas */
.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 179, 66, 0.1);
    text-align: center; /* Centrar contenido */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Icono más pequeño y centrado */
.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto; /* Centrado y menos margen */
    color: white;
    font-size: 1.4rem;
}

/* Título más pequeño */
.service-card h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

/* Texto más pequeño y compacto */
.service-card p {
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Variante alternativa: Layout horizontal para tarjetas aún más compactas */
.service-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem;
}

.service-card-horizontal .service-icon {
    margin: 0;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.service-card-horizontal .service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-card-horizontal .service-content p {
    font-size: 0.8rem;
    margin: 0;
}

/* Para usar layout horizontal en desktop pero vertical en móvil */
@media (min-width: 769px) {
    .service-card-adaptive {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .service-card-adaptive .service-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

.cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--light-green);
            color: var(--dark-green);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .cta-button:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

section.fade-in + section.fade-in {
    margin-top: 4rem;
}

/* =========================================
   SECCIÓN DE VIDEO POS
   ========================================= */

.video-section {
    margin: 5rem 0;
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

/* Contenedor del video responsivo */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: var(--dark-green);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* Descripción del video */
.video-description h3 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-description p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Highlights del video */
.video-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.highlight-item i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Botón CTA del video */
.video-cta {
    text-align: center;
}

.btn-video-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-video-demo:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-video-demo i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-section {
        margin: 3rem 0;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .video-description h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .video-description p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .highlight-item {
        font-size: 0.85rem;
    }
    
    .btn-video-demo {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animaciones específicas para la sección de video */
.video-wrapper {
    animation: zoomInUp 0.8s ease forwards;
}

.video-description {
    animation: fadeInRight 0.8s ease forwards 0.2s both;
}

.highlight-item {
    animation: slideInLeft 0.6s ease forwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }
.highlight-item:nth-child(4) { animation-delay: 0.4s; }

.btn-video-demo {
    animation: bounceIn 0.8s ease forwards 0.5s both;
}


/* =========================================
   OVERLAY DE VIDEO CON COLORES CODEIA
   ========================================= */

/* Modificar el contenedor del video para incluir overlay */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: var(--dark-green);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    opacity: 0; /* Oculto inicialmente */
    transition: opacity 0.3s ease;
}

/* Overlay con gradiente de colores CodeIA */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay:hover {
    background: var(--gradient-hover);
    transform: scale(1.02);
}

/* Botón de play */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 3px; /* Centrar visualmente el triángulo */
}

/* =========================================
   TEXTO MÁS PEQUEÑO PARA OVERLAY DE VIDEO
   ========================================= */

/* Texto del overlay con tamaños reducidos */
.overlay-text {
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.overlay-text h3 {
    font-size: 1.2rem;  /* Reducido de 1.5rem */
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.overlay-text p {
    font-size: 0.85rem;  /* Reducido de 1rem */
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

/* Responsive para overlay - tamaños aún más pequeños */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .overlay-text h3 {
        font-size: 1rem;      /* Reducido de 1.2rem */
        line-height: 1.2;
    }
    
    .overlay-text p {
        font-size: 0.75rem;   /* Reducido de 0.9rem */
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .overlay-text h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .overlay-text p {
        font-size: 0.7rem;
    }
}

/* Estado cuando se activa el video */
.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.playing iframe {
    opacity: 1;
}

/* Responsive para overlay */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .overlay-text h3 {
        font-size: 1.2rem;
    }
    
    .overlay-text p {
        font-size: 0.9rem;
    }
}

/* =========================================
   SECCIÓN DE INTRODUCCIÓN CON GRID
   ========================================= */

/* Intro Section - Siempre visible */
.page-content .intro-section {
    padding: 3rem 0;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

/* Forzar visibilidad inmediata de intro */
.page-content.fade-in .intro-section,
.page-content .intro-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Columna de texto */
.intro-text-col h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-text-col p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Lista de características */
.intro-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.intro-features li i {
    color: var(--primary-green);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Columna visual - Dashboard Mockup */
.intro-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Header del mockup */
.mockup-header {
    background: var(--gradient);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.mockup-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contenido del mockup */
.mockup-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: #f8f9fa;
}

.mockup-module {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-module:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.2);
}

.mockup-module i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

.mockup-module span {
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

/* Animación de entrada */
.intro-section .intro-text-col {
    animation: fadeInLeft 0.8s ease forwards;
}

.intro-section .intro-visual-col {
    animation: fadeInRight 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .intro-text-col {
        text-align: center;
    }

    .intro-features li {
        text-align: left;
    }

    .dashboard-mockup {
        max-width: 100%;
    }

    .mockup-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 2rem 0;
    }

    .intro-text-col h3 {
        font-size: 1.5rem;
    }

    .intro-text-col p {
        font-size: 0.95rem;
    }

    .intro-features li {
        font-size: 0.9rem;
    }

    .mockup-content {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .mockup-module {
        padding: 0.8rem;
    }

    .mockup-module i {
        font-size: 1.4rem;
    }

    .mockup-module span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .mockup-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-text-col h3 {
        font-size: 1.3rem;
    }

    .mockup-header {
        padding: 0.8rem;
    }

    .mockup-title {
        font-size: 0.8rem;
    }
}

/* =========================================
   FIX CRÍTICO PARA VISIBILIDAD EN MÓVIL
   ========================================= */

/* Asegurar que el main page-content sea visible inmediatamente */
.page-content.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Asegurar que las primeras secciones sean visibles */
.page-content > .hero-section-pos,
.page-content > .intro-section,
.page-content .hero-section-pos,
.page-content .intro-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Para mobile, mostrar todo el contenido inmediatamente */
@media (max-width: 768px) {
    .page-content,
    .page-content.fade-in,
    .page-content > *,
    .page-content .hero-section-pos,
    .page-content .intro-section {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        animation: none !important;
    }
}

