/* Estilos específicos para el modal de herramientas */

.herramientas-modal .modal-container {
    max-width: 800px;
    width: 90%;
    animation: herramientasFadeIn 0.3s ease;
}

.herramientas-modal .modal-message {
    padding: 0;
    text-align: left;
}

/* Header con icono y título */
.herramientas-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #FFD700;
}

.herramientas-icon {
    margin-right: 15px;
}

.herramientas-icon i {
    font-size: 32px;
    color: #666666;
}

.herramientas-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.herramientas-title p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666666;
}

/* Contenido principal en dos columnas */
.herramientas-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.herramientas-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.herramientas-device {
    margin-bottom: 20px;
}

.herramientas-device i {
    font-size: 80px;
    color: #4A90E2;
}

.herramientas-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.herramientas-right {
    flex: 1;
}

/* Instrucciones */
.herramientas-instructions {
    margin-bottom: 25px;
}

.herramientas-instructions h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.herramientas-instructions h4 i {
    color: #666666;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.step-number {
    background: #4A90E2;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Mensaje de advertencia */
.herramientas-warning {
    background: #FFF8DC;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.warning-icon i {
    color: #FFA500;
    font-size: 18px;
    margin-top: 2px;
}

.warning-content {
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
}

.warning-content strong {
    color: #000000;
}

/* Sección de descarga */
.herramientas-download-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.herramientas-download-btn {
    background: #28A745;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
}

.herramientas-download-btn:hover {
    background: #218838;
    transform: translateY(-1px);
    text-decoration: none;
}

.herramientas-download-btn:visited,
.herramientas-download-btn:focus,
.herramientas-download-btn:active {
    color: white;
    text-decoration: none;
    outline: none;
}

.herramientas-download-btn i {
    font-size: 18px;
}

.download-note {
    font-size: 12px;
    color: #666666;
    margin: 0;
    font-style: italic;
}

/* Animación específica para herramientas */
@keyframes herramientasFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .herramientas-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .herramientas-modal .modal-container {
        width: 95%;
    }
    
    .herramientas-device i {
        font-size: 60px;
    }
} 