/* ======================================================
   ESTILOS ESPECÍFICOS PARA automatizaciones-ia.html
   TONALIDAD PRINCIPAL: #0ff (CIAN / AZUL)
   ESTRUCTURA DIFERENTE A DESARROLLO WEB
   ====================================================== */

/* HERO ESPECÍFICO (mismo estilo pero colores IA) */
.hero-ia {
    padding: 10rem 2rem 5rem;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.05), transparent 50%),
                var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-ia .hero-content {
    margin: 0 auto;
    text-align: center;
}

.hero-ia .hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #0ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

.hero-ia .hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-ia .hero-title .highlight {
    color: #0ff;
    display: inline-block;
    position: relative;
}

.hero-ia .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 255, 255, 0.2);
    z-index: -1;
}

.hero-ia .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-ia .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Botones específicos IA */
.btn-primary-ia {
    display: inline-block;
    background: transparent;
    color: #0ff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid #0ff;
    transition: all 0.3s ease;
    min-width: 240px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.btn-primary-ia:hover {
    background: #0ff;
    color: #000;
}

.btn-secondary-ia {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 240px;
}

.btn-secondary-ia:hover {
    border-color: #0ff;
    color: #0ff;
}

.btn-outline-ia {
    display: inline-block;
    background: transparent;
    color: #0ff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid #0ff;
    transition: all 0.3s ease;
}

.btn-outline-ia:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* BLOQUE DE IMPACTO: ESTADÍSTICAS */
.impacto-stats {
    padding: 40px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
}

.stat-icon {
    font-size: 2rem;
    color: #0ff;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* SECCIÓN: ¿QUÉ PUEDES AUTOMATIZAR? */
.que-automatizar {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: #0ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.area-header {
    padding: 20px 25px;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.05), transparent);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.area-header i {
    font-size: 2rem;
    color: #0ff;
}

.area-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.area-content {
    padding: 25px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.area-list li i {
    color: #0ff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.area-impacto {
    text-align: right;
}

.impacto-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #0ff;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
}

/* SECCIÓN PRESENCIAL LANZAROTE (versión diferente) */
.lanzarote-presencial {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.presencial-box {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.05), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.presencial-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.presencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.presencial-tag {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #0ff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.presencial-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.presencial-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.presencial-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.presencial-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.presencial-features i {
    color: #0ff;
}

.presencial-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presencial-image i {
    font-size: 8rem;
    color: #0ff;
    opacity: 0.6;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.image-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px dashed #0ff;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CTA FINAL */
.cta-ia {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1), transparent 70%),
                var(--bg-primary);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    min-width: 280px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-ia .hero-title {
        font-size: 3.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .presencial-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .presencial-features {
        align-items: center;
    }
    
    .presencial-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-ia .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-ia .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .presencial-box {
        padding: 30px 20px;
    }
    
    .presencial-info h3 {
        font-size: 1.8rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-ia {
        padding: 8rem 1rem 4rem;
    }
    
    .hero-ia .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ia .hero-cta {
        flex-direction: column;
    }
    
    .hero-ia .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .area-header {
        padding: 15px 20px;
    }
    
    .area-content {
        padding: 20px;
    }
    
    .testimonio-card {
        padding: 20px 15px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
}